diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ApiManagement.ServiceManagement.Test.csproj
index 565e1efb3050..5a31813529a5 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.ps1 b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
index 1a75503e93d0..a29da42f9415 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
+++ b/src/ApiManagement/ApiManagement.ServiceManagement.Test/ScenarioTests/ApiManagementTests.ps1
@@ -1919,7 +1919,20 @@ function Certificate-CrudTest {
$certThumbprint = '8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2'
$certId = getAssetName
+ $kvcertId = 'cert1234'
+ $secretIdentifier = 'https://jikangsdkkeyvault.vault.azure.net/secrets/sdkcert1'
+ $keyvault = New-AzApiManagementKeyVaultObject -SecretIdentifier $secretIdentifier
try {
+ # Add Keyvault Certificate
+ $kvcert = New-AzApiManagementCertificate -Context $context -CertificateId $kvcertId -KeyVault $keyvault
+ Assert-AreEqual $kvcertId $kvcert.CertificateId
+ Assert-NotNull $kvcert.Subject
+ Assert-NotNull $kvcert.Thumbprint
+ Assert-AreEqual $secretIdentifier $kvcert.keyVault.SecretIdentifier
+
+ $refresh = Get-AzApiManagementCertificate -ResourceId $kvcert.Id | Sync-AzApiManagementKeyVaultSecret
+ Assert-NotNull $refresh
+
# upload certificate
$cert = New-AzApiManagementCertificate -Context $context -CertificateId $certId -PfxFilePath $certPath -PfxPassword $certPassword
@@ -1950,17 +1963,20 @@ function Certificate-CrudTest {
# list certificates
$certificates = Get-AzApiManagementCertificate -Context $context
- Assert-AreEqual 1 $certificates.Count
+ Assert-AreEqual 2 $certificates.Count
- Assert-AreEqual $certId $certificates[0].CertificateId
- Assert-AreEqual $certThumbprint $certificates[0].Thumbprint
- Assert-AreEqual $certSubject $certificates[0].Subject
+ Assert-AreEqual $certId $certificates[1].CertificateId
+ Assert-AreEqual $certThumbprint $certificates[1].Thumbprint
+ Assert-AreEqual $certSubject $certificates[1].Subject
}
finally {
# remove uploaded certificate
$removed = Remove-AzApiManagementCertificate -Context $context -CertificateId $certId -PassThru
Assert-True { $removed }
+ $removed = Remove-AzApiManagementCertificate -Context $context -CertificateId $kvcertId -PassThru
+ Assert-True { $removed }
+
$cert = $null
try {
# check it was removed
@@ -1968,6 +1984,15 @@ function Certificate-CrudTest {
}
catch {
}
+ Assert-Null $cert
+
+ $cert = $null
+ try {
+ # check it was removed
+ $cert = Get-AzApiManagementCertificate -Context $context -CertificateId $kvcertId
+ }
+ catch {
+ }
Assert-Null $cert
}
@@ -1975,7 +2000,7 @@ function Certificate-CrudTest {
<#
.SYNOPSIS
-Tests CRUD operations of Certificate.
+Tests CRUD operations of Cache.
#>
function Cache-CrudTest {
Param($resourceGroupName, $serviceName)
@@ -2005,6 +2030,7 @@ function Cache-CrudTest {
Assert-AreEqual $cacheId $cache.CacheId
Assert-NotNull $cache.ConnectionString
Assert-AreEqual $cacheDescription $cache.Description
+ Assert-NotNull $cache.UseFromLocation
# get cache by Id
$cache = Get-AzApiManagementCache -ResourceId $cache.Id
@@ -2119,7 +2145,7 @@ function AuthorizationServer-CrudTest {
Assert-AreEqual $resourceOwnerUsername $server.ResourceOwnerUsername
Assert-AreEqual $supportState $server.SupportState
Assert-AreEqual $tokenBodyParameters.Count $server.TokenBodyParameters.Count
-
+
$server = Get-AzApiManagementAuthorizationServer -Context $context -ServerId $serverId
Assert-AreEqual $serverId $server.ServerId
@@ -2143,8 +2169,8 @@ function AuthorizationServer-CrudTest {
Assert-AreEqual $clientAuthenticationMethods.Count $server.ClientAuthenticationMethods.Count
Assert-AreEqual $clientAuthenticationMethods[0] $server.ClientAuthenticationMethods[0]
Assert-Null $server.ClientSecret
- Assert-AreEqual $resourceOwnerPassword $server.ResourceOwnerPassword
- Assert-AreEqual $resourceOwnerUsername $server.ResourceOwnerUsername
+ #Assert-AreEqual $resourceOwnerPassword $server.ResourceOwnerPassword
+ #Assert-AreEqual $resourceOwnerUsername $server.ResourceOwnerUsername
Assert-AreEqual $supportState $server.SupportState
Assert-AreEqual $tokenBodyParameters.Count $server.TokenBodyParameters.Count
@@ -2478,6 +2504,8 @@ function Properties-CrudTest {
# create non-Secret Property
$namedValueId = getAssetName
$secretNamedValueId = $null
+ $secretIdentifier = 'https://jikangsdkkeyvault.vault.azure.net/secrets/sdkkv'
+ $keyvault = New-AzApiManagementKeyVaultObject -SecretIdentifier $secretIdentifier
try {
$propertyName = getAssetName
$propertyValue = getAssetName
@@ -2494,6 +2522,20 @@ function Properties-CrudTest {
$property = Get-AzApiManagementNamedValueSecretValue -Context $context -NamedValueId $namedValueId
Assert-AreEqual $propertyValue $property.Value
+ #create KeyVault Property
+ $keyVaultNamedValueId = getAssetName
+ $keyVaultNamedValueName = getAssetName
+ $keyVaultNamedValue = New-AzApiManagementNamedValue -Context $context -NamedValueId $keyVaultNamedValueId -Name $keyVaultNamedValueName -keyVault $keyvault -Secret
+
+ Assert-NotNull $keyVaultNamedValue
+ Assert-AreEqual $keyVaultNamedValueId $keyVaultNamedValue.NamedValueId
+ Assert-AreEqual $keyVaultNamedValueName $keyVaultNamedValue.Name
+ Assert-Null $keyVaultNamedValue.Value
+ Assert-NotNull $keyVaultNamedValue.KeyVault.SecretIdentifier
+
+ $refresh = Sync-AzApiManagementKeyVaultSecret -ResourceId $keyVaultNamedValue.Id
+ Assert-NotNull $refresh
+
#create Secret Property
$secretNamedValueId = getAssetName
$secretPropertyName = getAssetName
@@ -2512,8 +2554,8 @@ function Properties-CrudTest {
$properties = Get-AzApiManagementNamedValue -Context $context
Assert-NotNull $properties
- # there should be 2 properties
- Assert-AreEqual 2 $properties.Count
+ # there should be 3 properties
+ Assert-AreEqual 3 $properties.Count
# get properties by name
$properties = $null
@@ -2521,7 +2563,7 @@ function Properties-CrudTest {
Assert-NotNull $properties
# both the properties created start with 'ps'
- Assert-AreEqual 2 $properties.Count
+ Assert-AreEqual 3 $properties.Count
# get properties by tag
$properties = $null
@@ -2609,6 +2651,20 @@ function Properties-CrudTest {
}
catch {
}
+
+ #remove kv NamedValue
+ $removed = Remove-AzApiManagementNamedValue -Context $context -NamedValueId $keyVaultNamedValueId -PassThru
+ Assert-True { $removed }
+
+ $property = $null
+ try {
+ # check it was removed
+ $property = Get-AzApiManagementNamedValue -Context $context -$keyVaultNamedValueId $namedValueId
+ }
+ catch {
+ }
+
+ Assert-Null $property
}
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/ApiManagementTests/CreateApiManagementService.json b/src/ApiManagement/ApiManagement.ServiceManagement.Test/SessionRecords/ApiManagementTests/CreateApiManagementService.json
index 6cde24fbc307..598697dd79fe 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "dff9a38f-25ab-4740-842e-234a7efa24dc"
+ "4f8a81b7-e36b-49aa-8806-dadf433df839"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,14 +33,14 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAFww0=\""
+ "\"AAAAAAAQXBQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e574dce3-5801-4996-964f-5db9df882406",
- "36815db6-ba07-463d-bb96-9d902abeb446"
+ "786917bd-027c-4368-976f-6e940df25954",
+ "51416d4f-ddf8-46aa-a557-09c5f0f44f1e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -49,19 +49,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "7e4afd52-c844-4e0d-9b5b-c721cf3cd3fb"
+ "47a5e68a-55eb-4b98-98c0-18d7e43f6e2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194815Z:7e4afd52-c844-4e0d-9b5b-c721cf3cd3fb"
+ "WESTCENTRALUS:20210726T232700Z:47a5e68a-55eb-4b98-98c0-18d7e43f6e2c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:48:14 GMT"
+ "Mon, 26 Jul 2021 23:26:59 GMT"
],
"Content-Length": [
- "2184"
+ "2220"
],
"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\": \"AAAAAAAFww0=\",\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 }\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\": null\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f62108d1-0539-4568-ab9e-bc24c808b30c"
+ "96deef19-4eec-44b3-b0df-0e35711d724d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -100,13 +100,13 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAFww0=\""
+ "\"AAAAAAAQXBQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "546879f7-23a5-4bf5-9738-3f5198259fd6"
+ "5e737740-6455-4f33-80bd-6aeccee61ece"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -115,19 +115,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "0476c54c-9941-42da-9984-7701f6f3743a"
+ "7def110a-98b7-43b4-ada5-d9f90f9f2de6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200430T194815Z:0476c54c-9941-42da-9984-7701f6f3743a"
+ "WESTCENTRALUS:20210726T232700Z:7def110a-98b7-43b4-ada5-d9f90f9f2de6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Thu, 30 Apr 2020 19:48:15 GMT"
+ "Mon, 26 Jul 2021 23:27:00 GMT"
],
"Content-Length": [
- "2184"
+ "2220"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -136,7 +136,7 @@
"-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\": \"AAAAAAAFww0=\",\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 }\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\": null\r\n}",
+ "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}",
"StatusCode": 200
}
],
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 695911a9fb55..2d1ba6b5b303 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0522dfc0-1141-41be-9cdc-8547dbf5b643"
+ "4a3256ef-e92a-4faf-a536-a5e75fe1a5d1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0ded8c98-a16b-409b-ba0f-9125c2e74900"
+ "d4b9f3f3-0967-48c5-b6ec-fc05f303d10f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "5373a7c1-3cb7-4f4d-839d-6853080aec32"
+ "edfeb251-c970-47ae-9878-9e4c82fa7137"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164423Z:5373a7c1-3cb7-4f4d-839d-6853080aec32"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001642Z:edfeb251-c970-47ae-9878-9e4c82fa7137"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:23 GMT"
+ "Tue, 13 Jul 2021 00:16:42 GMT"
],
"Content-Length": [
"729"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f6e8abb-9c9e-4223-bf90-547f7cc80b87"
+ "fd2bd979-98fd-42ac-928f-02ecb1c365e1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +90,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPIk=\""
+ "\"AAAAAAAA/5E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e6b983a6-2249-42ae-9eec-794aadd6ad25"
+ "802a034f-8877-4303-b256-152618236add"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-correlation-request-id": [
- "8c695e8e-8b21-412d-9013-6190b3c8fd5c"
+ "c5485321-f73d-410f-a0ad-a35c0589ce26"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164423Z:8c695e8e-8b21-412d-9013-6190b3c8fd5c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001643Z:c5485321-f73d-410f-a0ad-a35c0589ce26"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:23 GMT"
+ "Tue, 13 Jul 2021 00:16:42 GMT"
],
"Content-Length": [
"747"
@@ -130,22 +130,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02fe42a1-9aa2-429f-8b06-0de121ed7888"
+ "9d897e8e-24d4-4a57-883a-8adeaa93b212"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -158,29 +158,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f8645a3c-932a-47b4-bb14-4470484c8981"
+ "0d603a0d-bc1c-46d9-93a7-ae6fc1a3a335"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "cefc68e2-3454-4c4e-ac50-c919f2676948"
+ "72c7905e-f67c-414f-90b4-5320ae4f280e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164424Z:cefc68e2-3454-4c4e-ac50-c919f2676948"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001643Z:72c7905e-f67c-414f-90b4-5320ae4f280e"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:23 GMT"
+ "Tue, 13 Jul 2021 00:16:42 GMT"
],
"Content-Length": [
- "7423"
+ "7816"
],
"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 \"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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDE0Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjY3Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6415\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"displayName\": \"ps2032\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6561\",\r\n \"versionQueryName\": \"ps602\",\r\n \"displayName\": \"ps5592\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e60b0d7-9fa5-4336-8160-320120d5d8bd"
+ "a38dbc91-4c5b-4da7-bcf2-5fe664227003"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "156"
+ "155"
]
},
"ResponseHeaders": {
@@ -225,34 +225,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPc4=\""
+ "\"AAAAAAABAS0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f23c74ac-257e-420b-be00-3faebd5e3b12"
+ "10f5d9ad-9471-443e-bdf1-8256641ab041"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "8b91178b-19ff-4511-b335-e7cc6001a545"
+ "f33b56b9-05c7-4c74-94d5-6b8df71aed20"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164424Z:8b91178b-19ff-4511-b335-e7cc6001a545"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001643Z:f33b56b9-05c7-4c74-94d5-6b8df71aed20"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:24 GMT"
+ "Tue, 13 Jul 2021 00:16:43 GMT"
],
"Content-Length": [
- "449"
+ "448"
],
"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/ps4142\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps4142\",\r\n \"properties\": {\r\n \"displayName\": \"ps2032\",\r\n \"description\": \"ps6415\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8138\",\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps3982\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0129fbc0-23d5-4bbf-a7a2-bcd4d92540a9"
+ "c309374f-2434-40e6-bd78-0f8b96bf7a24"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -297,31 +297,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPdE=\""
+ "\"AAAAAAABATE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "73f7dd39-fbb6-4ea5-9e46-385a6882536c"
+ "ab66eda0-b4bc-4f5f-a6f6-5be0a3be02a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "b599c4a9-6be2-4151-b5d0-fffcc52115e1"
+ "bcfd8825-9856-4627-a318-f935b33d74da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164425Z:b599c4a9-6be2-4151-b5d0-fffcc52115e1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001645Z:bcfd8825-9856-4627-a318-f935b33d74da"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:25 GMT"
+ "Tue, 13 Jul 2021 00:16:44 GMT"
],
"Content-Length": [
"768"
@@ -333,20 +333,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1067\",\r\n \"properties\": {\r\n \"displayName\": \"ps3982\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8138\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5809?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODA5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c309374f-2434-40e6-bd78-0f8b96bf7a24"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,31 +360,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPdE=\""
+ "\"AAAAAAABATE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c426f36f-9dfa-4eed-911a-ec9a56bcb95e"
+ "159af660-cd20-4401-9216-7ff26f0f3475"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "05d4e716-35d9-43a4-a2d4-19e020784195"
+ "31f0455f-19bc-469e-9376-ac84ab46140e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164456Z:05d4e716-35d9-43a4-a2d4-19e020784195"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001715Z:31f0455f-19bc-469e-9376-ac84ab46140e"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:55 GMT"
+ "Tue, 13 Jul 2021 00:17:14 GMT"
],
"Content-Length": [
"768"
@@ -393,26 +396,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1067\",\r\n \"properties\": {\r\n \"displayName\": \"ps3982\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps8138\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps1879\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "491b8dfd-5d8b-4180-8cb4-0f0bf2535e09"
+ "0d5c81ec-ef51-49d0-be8f-a1195b1fcdaa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -425,29 +428,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6078bf67-ec03-4581-9fa6-536c4a047e8f"
+ "e2bdbbe5-3935-427e-bfa4-089b49304ce1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "56125a0f-8659-4c14-b059-0740c53a7203"
+ "b00bcec6-810b-41cf-950d-0e0ef7a99324"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164456Z:56125a0f-8659-4c14-b059-0740c53a7203"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001715Z:b00bcec6-810b-41cf-950d-0e0ef7a99324"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:55 GMT"
+ "Tue, 13 Jul 2021 00:17:14 GMT"
],
"Content-Length": [
- "7411"
+ "7804"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -456,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/ps1067/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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/ps1067/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/ps1067/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/ps1067/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/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/create-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7e2b9959-2b8c-4957-a92b-a66c83b4d6fa"
+ "f4a58b6e-ba59-48cd-bc45-cb781acb373f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -486,31 +489,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPeE=\""
+ "\"AAAAAAABAUE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "291b519f-4b6d-41c4-961d-954d14818f97"
+ "8d6db15a-be69-46df-ba0e-96c9d5e679da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-correlation-request-id": [
- "eaa4a9dc-11ac-4561-aa5d-1835c5b5004c"
+ "9e4f9a0c-eb5f-49db-ade7-ebf2bc262ed2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164456Z:eaa4a9dc-11ac-4561-aa5d-1835c5b5004c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001715Z:9e4f9a0c-eb5f-49db-ade7-ebf2bc262ed2"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:56 GMT"
+ "Tue, 13 Jul 2021 00:17:14 GMT"
],
"Content-Length": [
"1267"
@@ -522,26 +525,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/modify-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvbW9kaWZ5LXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "426a2086-2ef5-490f-9874-e488e4601338"
+ "facafb02-c13b-4096-ba37-66ec0712fb59"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -552,31 +555,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPeA=\""
+ "\"AAAAAAABAUA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c6dcc46c-b05b-4d0c-8d23-954a60aa0221"
+ "9eeee20c-f911-4e56-a4b2-105366250a43"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
],
"x-ms-correlation-request-id": [
- "769b5552-8311-4ff6-a6fc-fe0295ce5b3f"
+ "470209cc-5802-46bd-b3f3-b86b78bd970a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164457Z:769b5552-8311-4ff6-a6fc-fe0295ce5b3f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001715Z:470209cc-5802-46bd-b3f3-b86b78bd970a"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:56 GMT"
+ "Tue, 13 Jul 2021 00:17:14 GMT"
],
"Content-Length": [
"890"
@@ -588,26 +591,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/remove-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmVtb3ZlLXJlc291cmNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51c3a2cf-c6c2-41b6-bb0c-e3a2b0e3a949"
+ "9e45ca3c-fb36-456f-8860-b850bf56174a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -618,31 +621,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPeI=\""
+ "\"AAAAAAABAUI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6e8d6a48-37c3-4ed3-bc8e-28f8df1412ba"
+ "a27a0a12-7820-455a-9a1b-c35476f7e206"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11991"
],
"x-ms-correlation-request-id": [
- "cbe77767-9ac9-46bf-80e7-fe09a144b443"
+ "92ad1e31-145d-4ba0-a671-dbd783372691"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164457Z:cbe77767-9ac9-46bf-80e7-fe09a144b443"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001715Z:92ad1e31-145d-4ba0-a671-dbd783372691"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:56 GMT"
+ "Tue, 13 Jul 2021 00:17:14 GMT"
],
"Content-Length": [
"900"
@@ -654,26 +657,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-header-only?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtaGVhZGVyLW9ubHk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "535b8e34-6295-4c40-a916-4e69d5c1b1be"
+ "75530ab4-2ec2-40b4-9ef7-e5348ca8d3fa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -684,31 +687,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPeM=\""
+ "\"AAAAAAABAUM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "45b95832-58f1-423e-b5a8-b60c6e8d9bef"
+ "1a712534-bb95-4491-bfa1-3ccf5d4d9da2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-correlation-request-id": [
- "7682b01f-d783-41e0-9d55-95be0f51f900"
+ "6a6d3597-b906-41e0-b47e-d4c5b4b1bae8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164457Z:7682b01f-d783-41e0-9d55-95be0f51f900"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001715Z:6a6d3597-b906-41e0-b47e-d4c5b4b1bae8"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:56 GMT"
+ "Tue, 13 Jul 2021 00:17:15 GMT"
],
"Content-Length": [
"895"
@@ -720,26 +723,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a37de18f-c1d4-4595-946d-a8bf48fdac14"
+ "03274a87-4e5f-4d55-a0c9-e64543c273aa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -750,31 +753,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPd4=\""
+ "\"AAAAAAABAT4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f2dcb570-003c-4e3e-9a4d-4958eacf530b"
+ "64ebeeb0-7774-481d-a23d-d267e2f3aa63"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11989"
],
"x-ms-correlation-request-id": [
- "5aaad265-4f14-423b-8b3f-36047ed606e4"
+ "2f355c8f-1c9f-45df-b2b5-f5ec09cb1655"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164457Z:5aaad265-4f14-423b-8b3f-36047ed606e4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001716Z:2f355c8f-1c9f-45df-b2b5-f5ec09cb1655"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:57 GMT"
+ "Tue, 13 Jul 2021 00:17:15 GMT"
],
"Content-Length": [
"1474"
@@ -786,26 +789,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/operations/retrieve-resource-cached?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3L29wZXJhdGlvbnMvcmV0cmlldmUtcmVzb3VyY2UtY2FjaGVkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "589239b3-84b8-4e71-bc67-4fd483bee799"
+ "2d5392f6-8236-4912-bc0f-9b866ac3ef53"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,31 +819,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPd8=\""
+ "\"AAAAAAABAT8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b235e951-a3fc-48b1-91dc-020a9bf38de3"
+ "a5206685-e717-43b7-a1d8-4ad4e74eff52"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11988"
],
"x-ms-correlation-request-id": [
- "67a17b47-7431-418b-929f-2e9b5f7d4b8d"
+ "7449c3b8-cdfb-4720-a755-3f3ff93c2b27"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164457Z:67a17b47-7431-418b-929f-2e9b5f7d4b8d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001716Z:7449c3b8-cdfb-4720-a755-3f3ff93c2b27"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:57 GMT"
+ "Tue, 13 Jul 2021 00:17:15 GMT"
],
"Content-Length": [
"1551"
@@ -852,32 +855,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9516\",\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps4142\",\r\n \"subscriptionRequired\": true,\r\n \"sourceApiId\": \"/apis/echo-api\",\r\n \"displayName\": \"ps9691\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3d3c584-ae32-4fed-aede-c896f922bca7"
+ "41b7fc7b-4609-4cdf-a29c-d92e0abaab25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "377"
+ "376"
]
},
"ResponseHeaders": {
@@ -888,34 +891,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPe8=\""
+ "\"AAAAAAABAVY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c6c7d9f9-7beb-4151-9878-57f7d5fa9517"
+ "11ab242b-e177-4007-98a2-d80814324f08"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "ea0b5ffe-e28d-4e00-a4af-824db165248a"
+ "0a935a50-3faa-41dc-b27e-59a10ba5f6f3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164501Z:ea0b5ffe-e28d-4e00-a4af-824db165248a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001717Z:0a935a50-3faa-41dc-b27e-59a10ba5f6f3"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:01 GMT"
+ "Tue, 13 Jul 2021 00:17:16 GMT"
],
"Content-Length": [
- "1366"
+ "1364"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -924,20 +927,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7862\",\r\n \"properties\": {\r\n \"displayName\": \"ps9691\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9516\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\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/ps4142\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142\",\r\n \"name\": \"ps2032\",\r\n \"description\": \"ps6415\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps2138\",\r\n \"versionHeaderName\": null\r\n }\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2333?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzMzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41b7fc7b-4609-4cdf-a29c-d92e0abaab25"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -948,34 +954,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPe8=\""
+ "\"AAAAAAABAVY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b179c5f7-4acf-4ff9-91cd-7a0566407e98"
+ "d24618a0-bab6-4acf-a07a-0cbb80c47a71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11987"
],
"x-ms-correlation-request-id": [
- "dcd27038-6817-460f-b971-ae63ec3094fe"
+ "68629107-08e8-43c1-80d4-a3dc3833c769"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164531Z:dcd27038-6817-460f-b971-ae63ec3094fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001747Z:68629107-08e8-43c1-80d4-a3dc3833c769"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:31 GMT"
+ "Tue, 13 Jul 2021 00:17:47 GMT"
],
"Content-Length": [
- "988"
+ "987"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -984,17 +990,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7862\",\r\n \"properties\": {\r\n \"displayName\": \"ps9691\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9516\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapiv2\",\r\n \"path\": \"ps6901\",\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/ps4142\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1067?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDY3P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96152717-14e6-4f85-839d-eff5d94757cc"
+ "94b3455c-41b8-44f4-8e1a-ef4d9f628d90"
],
"If-Match": [
"*"
@@ -1003,10 +1009,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1019,8 +1025,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e34b9f05-dd3a-486f-902e-1563f79952fd"
+ "d5cc312a-2b5e-4825-8c3a-a679402d8296"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1029,16 +1038,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "ec841790-67d8-4bc2-aade-9ea34aeda456"
+ "18fff16b-4ab3-4d24-b569-193e4272e5e0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164533Z:ec841790-67d8-4bc2-aade-9ea34aeda456"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001747Z:18fff16b-4ab3-4d24-b569-193e4272e5e0"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:32 GMT"
+ "Tue, 13 Jul 2021 00:17:47 GMT"
],
"Expires": [
"-1"
@@ -1051,13 +1057,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7862?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3ODYyP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5c2dca3-c7e1-4f35-a003-6e072b9ceb82"
+ "17ac2963-a18c-4187-ad82-74a1186d3fc2"
],
"If-Match": [
"*"
@@ -1066,10 +1072,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1082,8 +1088,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e78bf280-c782-40bf-b0fd-0f6bea123296"
+ "a67c2db0-64f9-474c-bcb6-b42434c24c27"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1092,16 +1101,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "3ceeb70f-d9bb-4b5c-aa5f-28a4b2e00308"
+ "50ce9d18-0a82-4ad2-9a96-c72ec23621d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164534Z:3ceeb70f-d9bb-4b5c-aa5f-28a4b2e00308"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001748Z:50ce9d18-0a82-4ad2-9a96-c72ec23621d4"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:33 GMT"
+ "Tue, 13 Jul 2021 00:17:48 GMT"
],
"Expires": [
"-1"
@@ -1114,13 +1120,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4142?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDE0Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps6672?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjY3Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb3cf3d7-6a25-42c2-8dd0-cbb27737419c"
+ "1dfab2af-fba0-40db-9a2b-4a4fc920f70f"
],
"If-Match": [
"*"
@@ -1129,10 +1135,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1145,8 +1151,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c0f2e360-02be-441c-bb21-706a5797f39c"
+ "62dd9f27-5838-424c-b4d2-bc1838322a05"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1155,16 +1164,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "0c6e105c-4bd5-4c2b-bd18-6a5930a10488"
+ "45a07cfe-b381-49a0-9325-cda91257c2d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164534Z:0c6e105c-4bd5-4c2b-bd18-6a5930a10488"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001748Z:45a07cfe-b381-49a0-9325-cda91257c2d3"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:33 GMT"
+ "Tue, 13 Jul 2021 00:17:48 GMT"
],
"Expires": [
"-1"
@@ -1176,18 +1182,18 @@
],
"Names": {
"": [
- "ps1067",
- "ps4142",
- "ps7862",
- "ps2032",
- "ps2138",
- "ps6415",
- "ps3982",
- "ps8138",
- "ps1879",
- "ps9691",
- "ps9516",
- "ps6901"
+ "ps5809",
+ "ps6672",
+ "ps2333",
+ "ps5592",
+ "ps602",
+ "ps6561",
+ "ps1273",
+ "ps6823",
+ "ps6595",
+ "ps917",
+ "ps9579",
+ "ps8476"
]
},
"Variables": {
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 d8cd6b8116d0..b978abc07b76 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f89855fd-3eb1-4327-83f2-b326b25d7820"
+ "1aa2d48b-6008-449c-924c-79d2aa726563"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "724c9112-5d98-47fa-8414-9b42e8d92aee"
+ "9db14f6a-9682-44f2-9e99-abc15d7c5fee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "8582d53b-1c74-466a-bf6d-eea192defffd"
+ "4b388755-c1d0-45f7-ad7f-758a5a7911eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164328Z:8582d53b-1c74-466a-bf6d-eea192defffd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001540Z:4b388755-c1d0-45f7-ad7f-758a5a7911eb"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:28 GMT"
+ "Tue, 13 Jul 2021 00:15:39 GMT"
],
"Content-Length": [
"729"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26475e3c-40e4-49a4-bd94-3f32d1dcb308"
+ "773061f5-1ca0-4ba2-9c38-df0506301eaf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +90,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPIk=\""
+ "\"AAAAAAAA/5E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "57c979b1-25d6-42ed-8f1d-ad05b845310b"
+ "5d33c1f1-7b77-4a3f-bf47-8abd93c9d3c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "7b8a32cb-9fca-42bc-b001-43885fe76f97"
+ "79240767-105f-459c-8070-b869a284249d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164329Z:7b8a32cb-9fca-42bc-b001-43885fe76f97"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001540Z:79240767-105f-459c-8070-b869a284249d"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:28 GMT"
+ "Tue, 13 Jul 2021 00:15:39 GMT"
],
"Content-Length": [
"747"
@@ -130,22 +130,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/JGZpbHRlcj1wcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lJTIwZXElMjAnRWNobyUyMEFQSScmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56c13013-3d08-416f-ad65-26aaad095918"
+ "dd30bc70-733d-4a83-a76e-530d22f12922"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -158,26 +158,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0564d318-9006-4519-84f1-07c0bae45f84"
+ "49a4b865-6f30-44ce-b6fc-e81188ad9871"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "02ab704c-6a6a-4684-bc47-33f1df886c31"
+ "b34dfde7-4d87-4e27-a7f7-edaea686c8d0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164329Z:02ab704c-6a6a-4684-bc47-33f1df886c31"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001540Z:b34dfde7-4d87-4e27-a7f7-edaea686c8d0"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:28 GMT"
+ "Tue, 13 Jul 2021 00:15:39 GMT"
],
"Content-Length": [
"729"
@@ -193,28 +193,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1666\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"displayName\": \"ps9238\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6107f342-abd0-459d-bf49-854820347fa5"
+ "177760f5-3a9b-4df6-a1b5-d3716bbb1c7e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "327"
+ "326"
]
},
"ResponseHeaders": {
@@ -225,34 +225,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPaQ=\""
+ "\"AAAAAAABAPI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c515efde-1b18-4643-a22b-4aef30b6a750"
+ "336a9e64-d10d-4aca-af26-c3cf0409889d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "09ef41b6-fe97-4c67-b7df-de20a6edd4f5"
+ "a3e51479-e4ca-4ffc-a50e-15ad6e291b27"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164329Z:09ef41b6-fe97-4c67-b7df-de20a6edd4f5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001541Z:a3e51479-e4ca-4ffc-a50e-15ad6e291b27"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:28 GMT"
+ "Tue, 13 Jul 2021 00:15:41 GMT"
],
"Content-Length": [
- "738"
+ "737"
],
"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/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\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\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3289\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3818\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7fff3264-2d46-44f6-a594-dc4645fbea68"
+ "16def454-d405-4877-92a9-efade78935f3"
],
"If-Match": [
"*"
@@ -280,16 +280,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "435"
+ "434"
]
},
"ResponseHeaders": {
@@ -300,34 +300,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPag=\""
+ "\"AAAAAAABAPc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6e9363e0-542d-4ac7-b18b-2f5a2cdc85f6"
+ "7c0511c0-38c7-4219-b018-dfa23967999f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "06f54a25-6415-485f-8f95-3c6f2ac8ee38"
+ "7e5971ad-322c-46e6-a068-fdd51c12f88d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164404Z:06f54a25-6415-485f-8f95-3c6f2ac8ee38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001618Z:7e5971ad-322c-46e6-a068-fdd51c12f88d"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:04 GMT"
+ "Tue, 13 Jul 2021 00:16:18 GMT"
],
"Content-Length": [
- "727"
+ "726"
],
"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/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\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\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3289\",\r\n \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"apiRevision\": \"1\",\r\n \"isCurrent\": true,\r\n \"subscriptionRequired\": true,\r\n \"displayName\": \"ps3818\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\r\n \"protocols\": [\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "28cd7cdd-cc32-479f-9e8d-10be8169e8ea"
+ "17e112e6-f280-4f8c-b2be-23b49a314800"
],
"If-Match": [
"*"
@@ -355,16 +355,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "435"
+ "434"
]
},
"ResponseHeaders": {
@@ -375,34 +375,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPaw=\""
+ "\"AAAAAAABAP4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bd541e2b-68aa-4491-bba0-0492a38351c1"
+ "f7aa283a-0bd8-4a4d-bf6f-63e860178efd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "c254f7dc-5c32-442d-93a5-7c2eb1750f94"
+ "c4fb8177-578c-4255-9e03-2195421f79a4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164405Z:c254f7dc-5c32-442d-93a5-7c2eb1750f94"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001621Z:c4fb8177-578c-4255-9e03-2195421f79a4"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:05 GMT"
+ "Tue, 13 Jul 2021 00:16:21 GMT"
],
"Content-Length": [
- "727"
+ "726"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -411,20 +411,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\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\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "177760f5-3a9b-4df6-a1b5-d3716bbb1c7e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,34 +438,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPaQ=\""
+ "\"AAAAAAABAPI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0848a60d-fd19-454d-a38e-9c94629045bd"
+ "b7ec937f-7201-44c3-8126-c15eb35926d1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "67763728-507a-4a52-a0ad-2fa21c3d5648"
+ "7aaecea2-08fc-4013-92d1-9ee14e89d0c4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164400Z:67763728-507a-4a52-a0ad-2fa21c3d5648"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001611Z:7aaecea2-08fc-4013-92d1-9ee14e89d0c4"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:59 GMT"
+ "Tue, 13 Jul 2021 00:16:11 GMT"
],
"Content-Length": [
- "738"
+ "737"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,26 +474,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\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\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ecb91ff-38df-454f-9901-34ff59931a45"
+ "16def454-d405-4877-92a9-efade78935f3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,34 +504,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPaQ=\""
+ "\"AAAAAAABAPI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1465cf79-24c3-439b-ac68-05bc2258aad8"
+ "937ebc21-6bb8-4fb1-bf5d-4dd19292725c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "a9d92b61-4414-4cf0-b2ca-c5c7199b6cf5"
+ "6a0d5691-1102-4d90-8afb-416b3876fda7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164400Z:a9d92b61-4414-4cf0-b2ca-c5c7199b6cf5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001611Z:6a0d5691-1102-4d90-8afb-416b3876fda7"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:00 GMT"
+ "Tue, 13 Jul 2021 00:16:11 GMT"
],
"Content-Length": [
- "738"
+ "737"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,26 +540,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps9238\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps1666\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps5503\",\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\": \"ps636\",\r\n \"query\": \"ps5648\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3398?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMzk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da40373c-9e30-4b9a-bf90-730a3a7c4c75"
+ "17e112e6-f280-4f8c-b2be-23b49a314800"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -567,34 +570,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPag=\""
+ "\"AAAAAAABAPc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "638134c2-11b0-488a-bf6d-8b298b674684"
+ "18ed7626-6fc3-4c41-a52b-196b3f6aed71"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "cf534705-3930-4404-b0d5-aa5afe06849c"
+ "2902f29f-166b-47f5-bd81-b7db50653f68"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164404Z:cf534705-3930-4404-b0d5-aa5afe06849c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001618Z:2902f29f-166b-47f5-bd81-b7db50653f68"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:04 GMT"
+ "Tue, 13 Jul 2021 00:16:18 GMT"
],
"Content-Length": [
- "727"
+ "726"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -603,26 +606,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapinew\",\r\n \"path\": \"ps6336\",\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\": \"ps3951\",\r\n \"query\": \"ps6386\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "699f7946-15e6-4665-b464-fdd71680a5c9"
+ "07f05e34-f076-463b-b346-eaf2f5def873"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -635,26 +638,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4014b5f9-00fc-48c6-bf59-ae86dd6833e0"
+ "7e2c3196-973d-4cb8-a969-57864b4974f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "b108afab-f359-4dcd-81a2-ee60d12a2bd5"
+ "f203a7d7-8739-49bb-bb00-574a4af8e482"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164405Z:b108afab-f359-4dcd-81a2-ee60d12a2bd5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001621Z:f203a7d7-8739-49bb-bb00-574a4af8e482"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:05 GMT"
+ "Tue, 13 Jul 2021 00:16:21 GMT"
],
"Content-Length": [
"1287"
@@ -670,22 +673,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczE4ODQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec77fdfd-ad5d-47ba-ab6a-354653b168bd"
+ "3fd3f176-e21d-4208-a6bc-50513c755e88"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -696,31 +699,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPaw=\""
+ "\"AAAAAAABAP4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ed6ebad1-9d9b-426b-94b8-7088d285bd75"
+ "260838db-483d-45f0-9ae2-a37a89ce9bf1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "361a4bfc-71e1-40ed-9fd5-92dad8001b10"
+ "3bf17b5f-84d4-4107-9d15-4ee5992160c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164405Z:361a4bfc-71e1-40ed-9fd5-92dad8001b10"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001622Z:3bf17b5f-84d4-4107-9d15-4ee5992160c6"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:05 GMT"
+ "Tue, 13 Jul 2021 00:16:21 GMT"
],
"Content-Length": [
"629"
@@ -732,26 +735,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "439c3cae-bbfc-4644-a00d-e0f6b9936572"
+ "b28cbe45-c4f1-408c-9bd0-41b33a630bab"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -764,26 +767,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6022f909-e0bc-4854-8ef3-827e8bac6429"
+ "ed6e51ce-8228-41ac-a077-dc134ba41890"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-correlation-request-id": [
- "2b17e278-8fd2-4415-a273-f9f1c4b62b5d"
+ "ed412a4a-9a02-4a7b-8ffc-37f4a397e0f4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164405Z:2b17e278-8fd2-4415-a273-f9f1c4b62b5d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001622Z:ed412a4a-9a02-4a7b-8ffc-37f4a397e0f4"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:05 GMT"
+ "Tue, 13 Jul 2021 00:16:22 GMT"
],
"Content-Length": [
"1482"
@@ -795,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/ps1884\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps1884\",\r\n \"properties\": {\r\n \"displayName\": \"ps3818\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps3289\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/updateapi\",\r\n \"path\": \"ps6336\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "effba4dd-f02f-4db4-98dd-d8c51f77912f"
+ "3686d036-5e7e-4fc8-bf62-3064f84d74a4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -827,26 +830,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "088a9b60-569f-4ab4-9ade-295d959f49e1"
+ "8df58a21-ed8d-400b-9cea-25c6fdf94d91"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-correlation-request-id": [
- "d3cff6ca-066c-4978-9218-da8d56ced932"
+ "18d36016-fa06-49f8-8f5a-446917ddf13d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164406Z:d3cff6ca-066c-4978-9218-da8d56ced932"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001623Z:18d36016-fa06-49f8-8f5a-446917ddf13d"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:05 GMT"
+ "Tue, 13 Jul 2021 00:16:22 GMT"
],
"Content-Length": [
"755"
@@ -862,22 +865,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps1884?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczE4ODQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62aaaf08-f22f-4316-8d99-dfd4ee06627b"
+ "ad752c02-fde4-4e98-8b74-9fcb60969dd2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -890,8 +893,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bbffec42-b004-47ed-a04e-8721b1f1e72a"
+ "316137d5-ea01-449b-9801-72bd606a6981"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -900,16 +906,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "7c2091fa-c360-42e8-8ad9-c6bc7ad1600d"
+ "81bd111a-45a8-4959-972d-9ee6baa745ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164406Z:7c2091fa-c360-42e8-8ad9-c6bc7ad1600d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001622Z:81bd111a-45a8-4959-972d-9ee6baa745ff"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:05 GMT"
+ "Tue, 13 Jul 2021 00:16:22 GMT"
],
"Expires": [
"-1"
@@ -922,13 +925,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1884?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxODg0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "109fdf21-7be9-42d0-89ec-f0967cd32869"
+ "1fd5525c-f204-458b-bd40-e4d29fad282c"
],
"If-Match": [
"*"
@@ -937,10 +940,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -953,8 +956,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2450f9a1-c8cd-4b75-8645-3df4ea82f598"
+ "3ac47a7f-842b-4be4-a28a-44a7e528c1c1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -963,16 +969,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "2f699a5e-5a30-47f1-afe2-ba16de9a8251"
+ "23a8fc5b-b080-4b88-adb9-84dc36d4d8b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164407Z:2f699a5e-5a30-47f1-afe2-ba16de9a8251"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001623Z:23a8fc5b-b080-4b88-adb9-84dc36d4d8b1"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:06 GMT"
+ "Tue, 13 Jul 2021 00:16:22 GMT"
],
"Expires": [
"-1"
@@ -987,17 +990,17 @@
],
"Names": {
"": [
- "ps1884",
- "ps9238",
- "ps1666",
- "ps5503",
- "ps636",
- "ps5648",
- "ps3818",
- "ps3289",
- "ps6336",
- "ps3951",
- "ps6386"
+ "ps3398",
+ "ps8573",
+ "ps73",
+ "ps7658",
+ "ps1329",
+ "ps4460",
+ "ps3142",
+ "ps4669",
+ "ps4809",
+ "ps3527",
+ "ps699"
]
},
"Variables": {
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 8a1c31a9d5ec..6784f4d9e5e4 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1503920e-db09-4e22-aed7-01c926f3a96e"
+ "49964453-9398-4ad5-a23c-37a5bfa7d8c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "99da0789-af78-49e8-a7e4-8f648e38dff7"
+ "a78de975-f77c-4f10-a087-86b62f8d7828"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "1c66535e-4c9e-4bea-8f7c-b72fa2c2ac24"
+ "8d428925-1132-4381-80ba-320829cff787"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164154Z:1c66535e-4c9e-4bea-8f7c-b72fa2c2ac24"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001359Z:8d428925-1132-4381-80ba-320829cff787"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:53 GMT"
+ "Tue, 13 Jul 2021 00:13:58 GMT"
],
"Content-Length": [
"729"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad037c5c-e0d9-49af-9c02-32c8e1b7d747"
+ "a0af6b7c-71c0-424b-80dd-c2224780e63a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -92,8 +92,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "34d9798c-6427-4cf8-8a75-172f84ab4e1c"
+ "3b2fd595-6ab3-4950-8419-f82f4bd38598"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -102,16 +105,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "7d45ef80-9c84-4a6b-b139-315d98e7a38e"
+ "01ced567-1de8-49ea-9a75-8a0c2666e2d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164154Z:7d45ef80-9c84-4a6b-b139-315d98e7a38e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001359Z:01ced567-1de8-49ea-9a75-8a0c2666e2d3"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:54 GMT"
+ "Tue, 13 Jul 2021 00:13: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/apis/echo-api/diagnostics?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2fc8fec-fe81-4ccb-8297-1bcc96768f8e"
+ "44574b44-80d1-4913-bdbb-1338df60efde"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -155,8 +155,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4dada461-2636-46ec-912b-5b6477a219fb"
+ "d8f07f7a-6b98-4995-9f9e-c070a1c611a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -165,16 +168,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "fdb503b5-5399-46d7-b54d-7092f62937c7"
+ "57bcf71b-2396-4627-9cf2-bad161ad26ad"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164159Z:fdb503b5-5399-46d7-b54d-7092f62937c7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001404Z:57bcf71b-2396-4627-9cf2-bad161ad26ad"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:58 GMT"
+ "Tue, 13 Jul 2021 00:14:03 GMT"
],
"Content-Length": [
"34"
@@ -190,28 +190,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMzgzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps213\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"e542043e-271b-4229-a821-33f9332d33fe\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4410aef-3e08-419e-a2a7-f40119d628be"
+ "43fac817-310e-4714-819a-c57bc0949a78"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "221"
+ "222"
]
},
"ResponseHeaders": {
@@ -222,13 +222,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPVM=\""
+ "\"AAAAAAABAI0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "27199e1b-dfca-4be0-aa99-069c7420b053"
+ "5875fd68-b95d-4e00-a433-c002b48f49bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,19 +240,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "fdc262df-0178-4e9a-88bc-9f428cc4b6f2"
+ "a22836e0-3bfd-4c26-8d89-15e6267e3a6b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164157Z:fdc262df-0178-4e9a-88bc-9f428cc4b6f2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001402Z:a22836e0-3bfd-4c26-8d89-15e6267e3a6b"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:56 GMT"
+ "Tue, 13 Jul 2021 00:14:02 GMT"
],
"Content-Length": [
- "504"
+ "506"
],
"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/ps9145\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps9145\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps213\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171ad5a2ca600fe4c29707}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9145\",\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/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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3bbf645-b4da-4879-a197-2cefb94eabb2"
+ "ec4c909c-2b04-4764-87dc-923838f09dd0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +294,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPVU=\""
+ "\"AAAAAAABAJA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "eca9a789-94ee-4872-abcf-a9fa485dbc85"
+ "7ea44bae-0f9a-4b49-8d20-f7043aa8a868"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,16 +312,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "847b5c81-0c56-4007-9de2-0ad8582a5b27"
+ "b3df10dd-1a6c-46c4-b256-e1bd6b79a708"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164158Z:847b5c81-0c56-4007-9de2-0ad8582a5b27"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001403Z:b3df10dd-1a6c-46c4-b256-e1bd6b79a708"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:57 GMT"
+ "Tue, 13 Jul 2021 00:14:02 GMT"
],
"Content-Length": [
"1417"
@@ -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/ps9145\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps9145\",\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/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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9bdaf88e-fc78-4777-ad33-e5932ebef382"
+ "d04ddae9-78dd-4255-9069-2785f27fe00a"
],
"If-Match": [
"*"
@@ -349,10 +349,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -369,13 +369,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPVg=\""
+ "\"AAAAAAABAJQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dcf3b52e-1248-46b7-8bb5-77d9226e1759"
+ "6e536ca6-408b-4e57-97f8-e9946f795f76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -384,16 +387,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "2c8ee5a5-7313-486e-8a00-226aeff34a35"
+ "a0169adf-3da3-4c46-a544-3ef8b41d0eb7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164158Z:2c8ee5a5-7313-486e-8a00-226aeff34a35"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001403Z:a0169adf-3da3-4c46-a544-3ef8b41d0eb7"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:57 GMT"
+ "Tue, 13 Jul 2021 00:14:02 GMT"
],
"Content-Length": [
"1076"
@@ -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/ps9145\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d8e8854-f4bd-4f8e-8375-f05f4ef54529"
+ "bee7c164-613f-44fc-846a-5821ce85519b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -435,13 +435,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPVg=\""
+ "\"AAAAAAABAJQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0a5e4dc9-d549-4869-a5f7-fe80fad2a675"
+ "d63d63fd-ef0e-4e64-bd37-ce519993ddc5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -450,16 +453,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "eab164a6-9d72-40c0-88dd-fc6d13169fab"
+ "650bc1da-78cf-40f6-acb3-62b719db7a43"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164158Z:eab164a6-9d72-40c0-88dd-fc6d13169fab"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001403Z:650bc1da-78cf-40f6-acb3-62b719db7a43"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:58 GMT"
+ "Tue, 13 Jul 2021 00:14:02 GMT"
],
"Content-Length": [
"1076"
@@ -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/ps9145\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f15d7538-ebed-49fb-870a-5dd9b34bab2b"
+ "59347589-43b2-4cfd-9abb-4120f134ed4f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,13 +501,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPVg=\""
+ "\"AAAAAAABAJQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "704fce42-8f47-4f16-bc48-78f709cf5d6b"
+ "67770aa8-3277-44c3-96bc-e15e217c7ffc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -516,16 +519,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "6ac168bc-47bc-4016-bbf3-9bff6f56dffb"
+ "082d32d3-ed29-4ee4-b146-593c75536437"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164158Z:6ac168bc-47bc-4016-bbf3-9bff6f56dffb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001403Z:082d32d3-ed29-4ee4-b146-593c75536437"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:58 GMT"
+ "Tue, 13 Jul 2021 00:14:03 GMT"
],
"Content-Length": [
"1076"
@@ -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/ps9145\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a41fe85b-d5b2-4ce4-b498-cfaafbe12365"
+ "6f82cf0c-f328-4a41-9aae-580861612820"
],
"If-Match": [
"*"
@@ -556,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -572,8 +572,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "205a8886-ee98-4999-8958-04a1fbd73792"
+ "c6be2e13-da34-43c7-9f15-a334be5f61bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -582,16 +585,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "e2e8a532-1b65-4f86-8095-0d7a1625a285"
+ "e7db7fea-a526-46f4-9af0-150c41c8ef25"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164159Z:e2e8a532-1b65-4f86-8095-0d7a1625a285"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001404Z:e7db7fea-a526-46f4-9af0-150c41c8ef25"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:58 GMT"
+ "Tue, 13 Jul 2021 00:14:03 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvZGlhZ25vc3RpY3MvYXBwbGljYXRpb25pbnNpZ2h0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d398d95-749c-4ba0-a927-e396ff1447e0"
+ "2938de6d-8cef-43ba-a421-9af6b89603d4"
],
"If-Match": [
"*"
@@ -619,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -635,8 +635,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "40e72632-34eb-4ca4-8a58-0d0b6e111767"
+ "44d3e48e-bc82-4a6d-9f6b-c7728a309ed8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,16 +648,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "947e4499-92f5-4536-8d7f-1b96d56fa64f"
+ "c9aa66ec-fb30-4bd6-8958-4542e8308775"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164159Z:947e4499-92f5-4536-8d7f-1b96d56fa64f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001404Z:c9aa66ec-fb30-4bd6-8958-4542e8308775"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:58 GMT"
+ "Tue, 13 Jul 2021 00:14:03 GMT"
],
"Expires": [
"-1"
@@ -664,13 +664,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps9145?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM5MTQ1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1383?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMzgzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5849e202-6e22-45b2-baac-c3f9420a8010"
+ "2fce1a49-1a3b-4563-8614-81d8690b2665"
],
"If-Match": [
"*"
@@ -679,10 +679,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -695,8 +695,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "02c332d0-7c27-43f2-a493-1dd15d646e49"
+ "dfff3a45-951a-460e-a4de-0ac9d8360a45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -705,16 +708,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "04fe11a4-9925-4d85-b459-504a6fd93ce9"
+ "b473bcdd-60f2-46b5-b2df-9709817c0970"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164159Z:04fe11a4-9925-4d85-b459-504a6fd93ce9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001404Z:b473bcdd-60f2-46b5-b2df-9709817c0970"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:59 GMT"
+ "Tue, 13 Jul 2021 00:14:03 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c040cef-6b8d-49cb-9e42-a51dd320f140"
+ "b6fd82c8-ad6a-482e-a79e-194586cb6009"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -755,8 +755,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1ddb45c6-80d4-44b8-a1df-b59ef582c281"
+ "f942e345-0b23-4bab-8a77-a359b7cb73df"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -765,19 +768,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "d354d078-8463-49de-97e4-ea741688662e"
+ "c4f28ca0-555e-42ea-a636-78a242693d89"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164159Z:d354d078-8463-49de-97e4-ea741688662e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001404Z:c4f28ca0-555e-42ea-a636-78a242693d89"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:59 GMT"
+ "Tue, 13 Jul 2021 00:14:04 GMT"
],
"Content-Length": [
- "505"
+ "34"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -786,77 +786,14 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ad5a2ca600fe4c29706\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171ad5a2ca600fe4c29706\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171ad5a2ca600fe4c29707\",\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/5f171ad5a2ca600fe4c29706?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWQ1YTJjYTYwMGZlNGMyOTcwNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a01c1ceb-4004-4946-8f96-d3718c2cd762"
- ],
- "If-Match": [
- "*"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.27817.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "83abec57-4a3b-47e0-a523-7e65e8ba4a48"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "8f938687-35f3-4652-bd80-3d79f24f9532"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200721T164200Z:8f938687-35f3-4652-bd80-3d79f24f9532"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Tue, 21 Jul 2020 16:41:59 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}",
"StatusCode": 200
}
],
"Names": {
"": [
- "ps9145",
- "ps213"
+ "ps1383",
+ "ps4934"
]
},
"Variables": {
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 08328bacc25d..c9364f0b8553 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/ps749?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "c1e5f380-b3a3-49a0-8551-3df5a4e41c20"
+ "75457790-82dd-4380-9e1b-928b3eed3b93"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01&asyncId=5f17190fa2ca600fe4c29689&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "53020e42-214d-41cc-8736-0187f4833881"
+ "9c225783-d927-4b10-9ebc-91890385c540"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-correlation-request-id": [
- "5bb6bd89-d41a-42bd-b253-e8a6668269b6"
+ "9256ee8f-7abe-4bb7-99d5-0b4068e9de21"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163423Z:5bb6bd89-d41a-42bd-b253-e8a6668269b6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000608Z:9256ee8f-7abe-4bb7-99d5-0b4068e9de21"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:22 GMT"
+ "Tue, 13 Jul 2021 00:06:08 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01&asyncId=5f17190fa2ca600fe4c29689&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMSZhc3luY0lkPTVmMTcxOTBmYTJjYTYwMGZlNGMyOTY4OSZhc3luY0NvZGU9MjAx",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "75457790-82dd-4380-9e1b-928b3eed3b93"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,34 +93,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO+4=\""
+ "\"AAAAAAAA/s4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1fbde73e-94bc-409e-8cf6-4a92125eafa2"
+ "60f7a91c-6c1f-491d-b9e7-995f2b39c8f6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11999"
],
"x-ms-correlation-request-id": [
- "9f4aef1e-5329-4cd4-858b-191269cca73e"
+ "b2b464af-5d92-43f3-9ddd-235e898ce281"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163453Z:9f4aef1e-5329-4cd4-858b-191269cca73e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000639Z:b2b464af-5d92-43f3-9ddd-235e898ce281"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:53 GMT"
+ "Tue, 13 Jul 2021 00:06:38 GMT"
],
"Content-Length": [
- "1047"
+ "1049"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7518?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NTE4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39365b65-8bac-4007-9687-be964a566914"
+ "75457790-82dd-4380-9e1b-928b3eed3b93"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,34 +159,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO+4=\""
+ "\"AAAAAAAA/s4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f803200f-f367-4599-9ff1-d5056b7a990c"
+ "bddc6f44-5a1d-4219-9748-85e9cb49ca0e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11998"
],
"x-ms-correlation-request-id": [
- "635fe429-3df2-4312-a6a0-08ddf5f1af42"
+ "ea673cc4-3daa-4764-83f8-bdaa8e124b27"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163454Z:635fe429-3df2-4312-a6a0-08ddf5f1af42"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000639Z:ea673cc4-3daa-4764-83f8-bdaa8e124b27"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:53 GMT"
+ "Tue, 13 Jul 2021 00:06:38 GMT"
],
"Content-Length": [
- "1047"
+ "1049"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDkvc2NoZW1hcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1fc86ae-e458-41e5-988c-4651f4862679"
+ "4cf556dd-a1a0-468e-8ef4-cfbfc5ed6483"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -224,29 +227,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0b881b28-8079-4bae-b883-11cfaf0d102b"
+ "c93bc123-2f8f-4ed2-b9cc-4f79c5218a87"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11997"
],
"x-ms-correlation-request-id": [
- "8744a79d-ad6d-41a3-b7b6-c39db810e550"
+ "68434211-b31d-4e75-a5fa-0ac1a7ad1ee4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163454Z:8744a79d-ad6d-41a3-b7b6-c39db810e550"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000639Z:68434211-b31d-4e75-a5fa-0ac1a7ad1ee4"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:54 GMT"
+ "Tue, 13 Jul 2021 00:06:39 GMT"
],
"Content-Length": [
- "10857"
+ "10858"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,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/ps749/schemas/5f17190fa2ca600fe4c29688\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f17190fa2ca600fe4c29688\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDklM0JyZXYlM0QxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fdec3e3e-2dd0-41a6-a90f-32d6aa91d661"
+ "7f4e11ef-c7ea-4538-bbf5-e5d3522171b4"
],
"If-Match": [
"*"
@@ -274,10 +277,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,34 +297,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPDQ=\""
+ "\"AAAAAAAA/yw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a1c4c5de-3a68-46dd-876f-99dc6a6e8634"
+ "f3ad1848-b723-4d8c-8971-81dbd0ef8a68"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1198"
],
"x-ms-correlation-request-id": [
- "4e97b409-a27b-4d70-a1b8-8e692e73aa97"
+ "e626a7af-f304-479c-b70d-800c791ce62b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163458Z:4e97b409-a27b-4d70-a1b8-8e692e73aa97"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000643Z:e626a7af-f304-479c-b70d-800c791ce62b"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:58 GMT"
+ "Tue, 13 Jul 2021 00:06:42 GMT"
],
"Content-Length": [
- "792"
+ "794"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,17 +333,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps749\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps749?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NDk/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a27449b-3ab0-4c80-97ef-06bb319b2f7a"
+ "6ce38418-09d8-4aea-83fe-dfdf0a89426a"
],
"If-Match": [
"*"
@@ -349,10 +352,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -365,26 +368,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0a4641a1-0463-492f-8aef-01f87e3f51ec"
+ "bc9b2567-e82e-48ad-90e6-da1f638a4240"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "766b1016-8302-4aaa-912a-7f4255d4667a"
+ "8520da2f-bc02-414f-9b89-83a636ae1cf8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163458Z:766b1016-8302-4aaa-912a-7f4255d4667a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000644Z:8520da2f-bc02-414f-9b89-83a636ae1cf8"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:58 GMT"
+ "Tue, 13 Jul 2021 00:06:43 GMT"
],
"Expires": [
"-1"
@@ -399,7 +402,7 @@
],
"Names": {
"": [
- "ps749"
+ "ps7518"
]
},
"Variables": {
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 7d5402b60462..3e03b46073d2 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/ps9664?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "cc62e96e-1af3-4027-9411-b24a99d4380c"
+ "438a71dc-970c-4f8e-9647-0bfe39da2a63"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01&asyncId=5f171a3da2ca600fe4c296bf&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8c5a6762-9e8c-42bd-a3d3-34eddd487307"
+ "53d28471-bd28-4b1a-9c35-839f94f20e55"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "56f03ad9-5b92-4a29-b9aa-81c3fe56b682"
+ "e5564cb1-be33-4e28-81d5-438c57c7db4e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163925Z:56f03ad9-5b92-4a29-b9aa-81c3fe56b682"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001056Z:e5564cb1-be33-4e28-81d5-438c57c7db4e"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:25 GMT"
+ "Tue, 13 Jul 2021 00:10:56 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01&asyncId=5f171a3da2ca600fe4c296bf&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWEzZGEyY2E2MDBmZTRjMjk2YmYmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "438a71dc-970c-4f8e-9647-0bfe39da2a63"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +93,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPJM=\""
+ "\"AAAAAAAA/54=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d29ce9e6-39a4-48c0-8537-ea338f21bab2"
+ "39f74bb9-8a10-4c19-8d9a-e6f737ae1e14"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11999"
],
"x-ms-correlation-request-id": [
- "e8499c1c-a13d-46a0-9199-33fa3b7aff65"
+ "446a7ab0-ca4b-41c4-8bf8-5b52e6ebf5c4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163955Z:e8499c1c-a13d-46a0-9199-33fa3b7aff65"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001126Z:446a7ab0-ca4b-41c4-8bf8-5b52e6ebf5c4"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:55 GMT"
+ "Tue, 13 Jul 2021 00:11:25 GMT"
],
"Content-Length": [
"1381"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9664\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8084?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MDg0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da0cf8f6-3e46-4f87-ab59-5a5f81d98b45"
+ "438a71dc-970c-4f8e-9647-0bfe39da2a63"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,31 +159,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPJM=\""
+ "\"AAAAAAAA/54=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f6985db1-fe1e-4c01-b5a1-2de3c211b599"
+ "74c290b3-3b26-4096-8a24-f2106bcd8e01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11998"
],
"x-ms-correlation-request-id": [
- "1ea94981-581d-49e2-a1a6-549cb678884d"
+ "8e31a1d1-4386-4dde-8c82-7e3d8fafaf6a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163955Z:1ea94981-581d-49e2-a1a6-549cb678884d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001126Z:8e31a1d1-4386-4dde-8c82-7e3d8fafaf6a"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:55 GMT"
+ "Tue, 13 Jul 2021 00:11:26 GMT"
],
"Content-Length": [
"1381"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9664\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "4e511614-1ae9-4b75-9d86-3d68b617575b"
+ "bc954ea8-a052-4b2b-a846-3854fd317bb7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,31 +231,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01&asyncId=5f171a5ca2ca600fe4c296c4&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "101085e0-39ba-4fbc-b861-30dbe5755f31"
+ "857f82ad-8d81-474c-8677-3f535a08673d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "9804b793-65a6-4b63-bf99-53cbfe53acdf"
+ "8c7c950f-9ee5-427a-8ab6-93ad2c57e22f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163956Z:9804b793-65a6-4b63-bf99-53cbfe53acdf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001127Z:8c7c950f-9ee5-427a-8ab6-93ad2c57e22f"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:55 GMT"
+ "Tue, 13 Jul 2021 00:11:26 GMT"
],
"Expires": [
"-1"
@@ -265,16 +268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01&asyncId=5f171a5ca2ca600fe4c296c4&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWE1Y2EyY2E2MDBmZTRjMjk2YzQmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc954ea8-a052-4b2b-a846-3854fd317bb7"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,31 +291,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPKM=\""
+ "\"AAAAAAAA/7U=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "41745eb7-31f1-46c1-abac-b659aab5ba0c"
+ "9dec35b2-1dce-4894-8187-6d0ba8a41b6c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11997"
],
"x-ms-correlation-request-id": [
- "b6777a45-49eb-47c1-93e6-6512590135f6"
+ "6d894b01-4d9d-441a-aed4-9c561b0adcaa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164026Z:b6777a45-49eb-47c1-93e6-6512590135f6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001157Z:6d894b01-4d9d-441a-aed4-9c561b0adcaa"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:25 GMT"
+ "Tue, 13 Jul 2021 00:11:56 GMT"
],
"Content-Length": [
"759"
@@ -321,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2363?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzYzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b77319ae-6354-4c86-b91f-6f789f4a17c0"
+ "bc954ea8-a052-4b2b-a846-3854fd317bb7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,31 +357,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPKM=\""
+ "\"AAAAAAAA/7U=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a9199e89-228c-4315-9a01-5c299cc357b0"
+ "af14eb9a-5c04-47dd-9845-565c3c1c4acd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11996"
],
"x-ms-correlation-request-id": [
- "f1fe5483-a34f-49c9-a153-e4bff7ad2ffe"
+ "8d2d62a3-544c-49fa-a720-b44208ef089a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164026Z:f1fe5483-a34f-49c9-a153-e4bff7ad2ffe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001157Z:8d2d62a3-544c-49fa-a720-b44208ef089a"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:25 GMT"
+ "Tue, 13 Jul 2021 00:11:56 GMT"
],
"Content-Length": [
"759"
@@ -387,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6114cccf-bf3b-493a-a9f8-7cb92212f9cc"
+ "bd5ed6f9-8e3e-4c00-bf83-356dd166737f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -419,29 +425,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7ae8aae5-ca1d-4614-90e8-d663500f61d3"
+ "5e48c50e-e797-45d6-a0ce-741bb13cd7f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11995"
],
"x-ms-correlation-request-id": [
- "ffbf6284-183d-4814-b3b1-ae21628dbef1"
+ "25ca8fc4-eeeb-450c-87e3-275476898847"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164026Z:ffbf6284-183d-4814-b3b1-ae21628dbef1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001157Z:25ca8fc4-eeeb-450c-87e3-275476898847"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:25 GMT"
+ "Tue, 13 Jul 2021 00:11:56 GMT"
],
"Content-Length": [
- "2515"
+ "2509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -450,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/ps9664/schemas/5f171a3da2ca600fe4c296be\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f171a3da2ca600fe4c296be\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f584f853-908c-4c73-84a1-5764fbe4fff5"
+ "ec5fc610-7b8d-4035-8bf0-b4c5b3afcdd4"
],
"If-Match": [
"*"
@@ -469,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -489,31 +495,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPLE=\""
+ "\"AAAAAAAA/8o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d9b07c4d-0120-49c4-8e7b-88cf07e0feeb"
+ "e74fcebc-4da5-4432-9dee-77928b30d877"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "1aa254a0-14f9-491f-86c6-c665417da16b"
+ "4138c4e9-5b79-4f8b-bac5-c0260ef7332f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164027Z:1aa254a0-14f9-491f-86c6-c665417da16b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001158Z:4138c4e9-5b79-4f8b-bac5-c0260ef7332f"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:26 GMT"
+ "Tue, 13 Jul 2021 00:11:57 GMT"
],
"Content-Length": [
"793"
@@ -525,17 +531,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3756\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9664?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NjY0P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d4cf6dc-30e6-4c21-8abb-7529f1296562"
+ "f99a0bc4-edf3-4cf0-99b9-230d2422684a"
],
"If-Match": [
"*"
@@ -544,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -560,26 +566,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "de171412-3a2e-4212-87f8-e662e6882f17"
+ "0c1ace76-001d-4b42-b209-bcf99354b491"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "49aa8fe9-e9f3-426f-91f6-8a7a11628424"
+ "b2bd4445-64e2-4c73-a828-b8f5d483f5a9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164027Z:49aa8fe9-e9f3-426f-91f6-8a7a11628424"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001158Z:b2bd4445-64e2-4c73-a828-b8f5d483f5a9"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:26 GMT"
+ "Tue, 13 Jul 2021 00:11:57 GMT"
],
"Expires": [
"-1"
@@ -592,13 +598,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3756?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzU2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c23d286b-b8bb-4d45-affa-46cbae938cef"
+ "b4994302-251d-4d45-b90c-980ea1e85f50"
],
"If-Match": [
"*"
@@ -607,10 +613,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -623,26 +629,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ac5b8273-8129-4154-ae4a-436d15f4fe71"
+ "57e850b2-babe-40d2-bf60-231f96116325"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14998"
],
"x-ms-correlation-request-id": [
- "713c7346-3782-4242-b94e-284206d06e51"
+ "cd520883-0cd9-4893-a994-4c7a4ccc57e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164027Z:713c7346-3782-4242-b94e-284206d06e51"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001158Z:cd520883-0cd9-4893-a994-4c7a4ccc57e7"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:26 GMT"
+ "Tue, 13 Jul 2021 00:11:57 GMT"
],
"Expires": [
"-1"
@@ -657,8 +663,8 @@
],
"Names": {
"": [
- "ps9664",
- "ps3756"
+ "ps8084",
+ "ps2363"
]
},
"Variables": {
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 5b3c22ad930d..2ef6acea5586 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/ps6896?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"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": [
- "426eeabe-dc3a-4988-8a06-b4b53a07ceac"
+ "bc76e4b2-57f8-48a6-9129-9a06ea668920"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01&asyncId=5f171873a2ca600fe4c29671&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "71ddc02b-aafe-4db3-a083-64b4b1b951e5"
+ "154f0d18-67d0-4c40-af85-66f593a6b54a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "24b23347-2114-4f5f-9ac0-76419972dc09"
+ "3d2966bd-ac4e-4384-8673-ced253e2613b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163148Z:24b23347-2114-4f5f-9ac0-76419972dc09"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191039Z:3d2966bd-ac4e-4384-8673-ced253e2613b"
],
"Date": [
- "Tue, 21 Jul 2020 16:31:48 GMT"
+ "Mon, 19 Jul 2021 19:10:38 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01&asyncId=5f171873a2ca600fe4c29671&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTg3M2EyY2E2MDBmZTRjMjk2NzEmYXN5bmNDb2RlPTIwMQ==",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bc76e4b2-57f8-48a6-9129-9a06ea668920"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +93,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOzY=\""
+ "\"AAAAAAABBBE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f8a4f5a1-989d-4d8c-ac3d-a9bb0bd2130d"
+ "85de798a-45ef-416c-b7ed-f785be713448"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,19 +111,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b57c903b-ef9a-47e2-8890-93ff59b78ec9"
+ "698af5c3-d95a-4a12-b6e4-b907138318cd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163218Z:b57c903b-ef9a-47e2-8890-93ff59b78ec9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191109Z:698af5c3-d95a-4a12-b6e4-b907138318cd"
],
"Date": [
- "Tue, 21 Jul 2020 16:32:18 GMT"
+ "Mon, 19 Jul 2021 19:11:09 GMT"
],
"Content-Length": [
- "884"
+ "882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6896\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps373?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzNzM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf7faedb-6526-4479-b7af-ef621d80d50a"
+ "bc76e4b2-57f8-48a6-9129-9a06ea668920"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +159,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOzY=\""
+ "\"AAAAAAABBBE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b68a5338-4d19-4a47-ab8b-33ff8a6b1ba8"
+ "73913596-489b-40cf-8256-623685bd768e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,19 +177,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f8b15c74-89f8-46e4-9398-e9c8a359c44f"
+ "6610ae6e-8340-46b7-a817-a026c01c04c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163219Z:f8b15c74-89f8-46e4-9398-e9c8a359c44f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191110Z:6610ae6e-8340-46b7-a817-a026c01c04c6"
],
"Date": [
- "Tue, 21 Jul 2020 16:32:18 GMT"
+ "Mon, 19 Jul 2021 19:11:09 GMT"
],
"Content-Length": [
- "884"
+ "882"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6896\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "315f5ee5-407c-46d8-9fdf-ca6cb2eea9d6"
+ "171f2573-d818-4cbc-9008-9ae33aadaf81"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,13 +231,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01&asyncId=5f171893a2ca600fe4c29676&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c0bfe05e-69f5-4216-b81a-bf3255f3ded5"
+ "9a00f57b-98b1-496d-85e0-2fcec367af2a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +249,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ab564b9d-425e-477d-a0ff-088089732b20"
+ "e4b208b1-24e3-4b2e-8e6c-323d981b93c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163219Z:ab564b9d-425e-477d-a0ff-088089732b20"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191110Z:e4b208b1-24e3-4b2e-8e6c-323d981b93c9"
],
"Date": [
- "Tue, 21 Jul 2020 16:32:19 GMT"
+ "Mon, 19 Jul 2021 19:11:10 GMT"
],
"Expires": [
"-1"
@@ -265,16 +268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01&asyncId=5f171893a2ca600fe4c29676&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTg5M2EyY2E2MDBmZTRjMjk2NzYmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "171f2573-d818-4cbc-9008-9ae33aadaf81"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,13 +291,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO1Q=\""
+ "\"AAAAAAABBDo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "42eea5e4-5e25-49d9-9535-0f583c5e9e8f"
+ "33df7470-c085-4498-9eb2-869f38a873b4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -300,16 +309,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "4f20358f-e23a-43bd-b9bb-2a3bae014fb5"
+ "2f408805-4def-4aa9-ac70-20018bf5581e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163250Z:4f20358f-e23a-43bd-b9bb-2a3bae014fb5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191141Z:2f408805-4def-4aa9-ac70-20018bf5581e"
],
"Date": [
- "Tue, 21 Jul 2020 16:32:49 GMT"
+ "Mon, 19 Jul 2021 19:11:40 GMT"
],
"Content-Length": [
"1046"
@@ -321,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1013?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxMDEzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0318b1d-9fbb-41bd-bc33-d5b1061dbd69"
+ "171f2573-d818-4cbc-9008-9ae33aadaf81"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,13 +357,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO1Q=\""
+ "\"AAAAAAABBDo=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "61d0b2d1-ff51-4462-b6aa-c687e4d04279"
+ "05968171-27fe-442e-9fba-5357cd0967e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -366,16 +375,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "11937321-22d0-4a0c-a8dd-af3c75b1848e"
+ "e7f3ac26-9163-4a5e-ba67-6e18052fb945"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163250Z:11937321-22d0-4a0c-a8dd-af3c75b1848e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191141Z:e7f3ac26-9163-4a5e-ba67-6e18052fb945"
],
"Date": [
- "Tue, 21 Jul 2020 16:32:49 GMT"
+ "Mon, 19 Jul 2021 19:11:40 GMT"
],
"Content-Length": [
"1046"
@@ -387,17 +393,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f532ae79-12bc-41d2-9880-5acc440a1856"
+ "3cb27dd1-1af0-471b-bb82-542d97ec15d6"
],
"If-Match": [
"*"
@@ -406,10 +412,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,13 +432,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO5g=\""
+ "\"AAAAAAABBJY=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5be8bbc3-effa-4ace-994c-c8deb5917d26"
+ "00cdde49-696b-4680-a5ca-b97d1d4ef248"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,16 +450,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "c3d244f2-aad1-4b9f-b1aa-e826932526f4"
+ "1aa0f2b8-b944-49de-88e6-0e89bba3027d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163258Z:c3d244f2-aad1-4b9f-b1aa-e826932526f4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191147Z:1aa0f2b8-b944-49de-88e6-0e89bba3027d"
],
"Date": [
- "Tue, 21 Jul 2020 16:32:57 GMT"
+ "Mon, 19 Jul 2021 19:11:47 GMT"
],
"Content-Length": [
"815"
@@ -462,17 +468,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8643\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6896?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2ODk2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25fe9e6c-549b-4ff5-90ce-8460873a4bbc"
+ "fe71b08d-ebf6-40b6-b726-fd1eef8db144"
],
"If-Match": [
"*"
@@ -481,10 +487,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -497,8 +503,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d86a5658-fbdc-4216-b629-a99902296ed9"
+ "67bbd295-893e-4b7d-9a50-ae28091bdaf7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,16 +516,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "c1de3bae-72f7-46e9-8b81-b066498e82db"
+ "446601af-dc3c-42b3-bf01-00f20db3a6cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163301Z:c1de3bae-72f7-46e9-8b81-b066498e82db"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191149Z:446601af-dc3c-42b3-bf01-00f20db3a6cc"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:00 GMT"
+ "Mon, 19 Jul 2021 19:11:48 GMT"
],
"Expires": [
"-1"
@@ -529,13 +535,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8643?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NjQzP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "432798a7-bf6d-46dc-9392-01dc3945bad6"
+ "c6684dff-2e5a-4cab-99e0-8355969cd915"
],
"If-Match": [
"*"
@@ -544,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -560,8 +566,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cbfcc449-f2be-4c09-81df-be5d0209a18c"
+ "d8960ef4-16c1-4f9a-b454-11fbb85beebb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -570,16 +579,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "f7b9c764-11ae-48a8-a689-cd4557b92c08"
+ "51aacc57-d2d8-4366-8705-6e4ee1fb7167"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163302Z:f7b9c764-11ae-48a8-a689-cd4557b92c08"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210719T191149Z:51aacc57-d2d8-4366-8705-6e4ee1fb7167"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:01 GMT"
+ "Mon, 19 Jul 2021 19:11:49 GMT"
],
"Expires": [
"-1"
@@ -594,8 +600,8 @@
],
"Names": {
"": [
- "ps6896",
- "ps8643"
+ "ps373",
+ "ps1013"
]
},
"Variables": {
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 f4764a77b998..581b9fb001b6 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/ps6038?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "ccebfa22-9a14-4543-9c19-5b824ba91c6c"
+ "78fcbff7-4e3b-469a-8e73-6399a89e0109"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01&asyncId=5f171bdaa2ca600fe4c2974c&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "aa5352cd-4162-41e9-8fcd-83a4a2b9b16b"
+ "83588153-e97b-48a1-bff0-52f25639c766"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "b17c9e7c-163e-4317-9c89-28e406e54f18"
+ "ca5dd73b-0bfb-46e4-8a12-a9e2309f262d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164618Z:b17c9e7c-163e-4317-9c89-28e406e54f18"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001831Z:ca5dd73b-0bfb-46e4-8a12-a9e2309f262d"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:18 GMT"
+ "Tue, 13 Jul 2021 00:18:31 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01&asyncId=5f171bdaa2ca600fe4c2974c&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWJkYWEyY2E2MDBmZTRjMjk3NGMmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78fcbff7-4e3b-469a-8e73-6399a89e0109"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +93,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPkA=\""
+ "\"AAAAAAABAcA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3e281092-7a61-44f5-9d7c-b9b14df0bb03"
+ "95c770c5-1a06-4843-b316-bbb645e54716"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +111,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "21fc4f69-acb8-44f2-8851-5402d9ee65f9"
+ "554acde3-6b39-4aab-b6c2-41c7b8e076ac"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164653Z:21fc4f69-acb8-44f2-8851-5402d9ee65f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001901Z:554acde3-6b39-4aab-b6c2-41c7b8e076ac"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:53 GMT"
+ "Tue, 13 Jul 2021 00:19:01 GMT"
],
"Content-Length": [
"792"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6038\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5691?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NjkxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56d7a686-8d99-4bef-938f-71bcb4c63830"
+ "78fcbff7-4e3b-469a-8e73-6399a89e0109"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +159,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPkA=\""
+ "\"AAAAAAABAcA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "351e0448-285e-41c8-8940-9e766c92aef4"
+ "311072f3-653e-4b89-adbd-3053db14d8fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +177,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "b900da6c-4492-473f-bebf-59d20a7bc68e"
+ "c4c76aaa-91cb-4445-aefa-c768d3f802b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164653Z:b900da6c-4492-473f-bebf-59d20a7bc68e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001901Z:c4c76aaa-91cb-4445-aefa-c768d3f802b6"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:53 GMT"
+ "Tue, 13 Jul 2021 00:19:01 GMT"
],
"Content-Length": [
"792"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6038\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "738a5032-6c07-4799-9adb-73116ae64afa"
+ "f91d8d7d-5a4e-47bc-90eb-60d4c994d107"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -224,8 +227,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f4886eb0-752b-4104-8f88-84a6df8fdbad"
+ "02fbe1eb-a75d-4aff-a578-13d553165306"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -234,16 +240,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "e3ca5c95-9f16-4627-bb90-50651b0ffe5d"
+ "dad38283-528c-4d76-a456-36c53b3caa8d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164654Z:e3ca5c95-9f16-4627-bb90-50651b0ffe5d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001901Z:dad38283-528c-4d76-a456-36c53b3caa8d"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:53 GMT"
+ "Tue, 13 Jul 2021 00:19:01 GMT"
],
"Content-Length": [
"2909"
@@ -255,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/ps6038/schemas/5f171bdaa2ca600fe4c2974b\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"5f171bdaa2ca600fe4c2974b\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6038?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2MDM4P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4441cbb-8727-48f4-a0c5-90883c02b4d7"
+ "992532ac-7bb6-438b-a33e-2a5152ae239b"
],
"If-Match": [
"*"
@@ -274,10 +277,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -290,8 +293,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bb0fa083-5690-4b9b-927d-ed424ef6b799"
+ "72c40530-2477-43ef-9fb8-bec0d7c0948c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -300,16 +306,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "94f38db5-98cf-4ebc-9c7a-8abc8b462bc3"
+ "46c9b401-4433-42cc-afbd-e9d130157402"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164654Z:94f38db5-98cf-4ebc-9c7a-8abc8b462bc3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001902Z:46c9b401-4433-42cc-afbd-e9d130157402"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:53 GMT"
+ "Tue, 13 Jul 2021 00:19:01 GMT"
],
"Expires": [
"-1"
@@ -324,7 +327,7 @@
],
"Names": {
"": [
- "ps6038"
+ "ps5691"
]
},
"Variables": {
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 00f4f64c894e..6fd6b9209975 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/ps3289?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "0465e8da-afe1-45e2-ad57-e6d96d480467"
+ "0e14e2ab-6898-4593-b8e7-f68d34f48545"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01&asyncId=5f171aefa2ca600fe4c2971c&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "21042a75-4ac6-4631-919e-868f3d1743d0"
+ "7648c62c-e0ac-4e45-a3a5-519428d1749e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "c9a9d4ba-3e14-487f-a189-69308ea2952f"
+ "dccf9c90-9d28-44be-8f6e-5e95e0bb4082"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164223Z:c9a9d4ba-3e14-487f-a189-69308ea2952f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001427Z:dccf9c90-9d28-44be-8f6e-5e95e0bb4082"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:23 GMT"
+ "Tue, 13 Jul 2021 00:14:27 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01&asyncId=5f171aefa2ca600fe4c2971c&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWFlZmEyY2E2MDBmZTRjMjk3MWMmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0e14e2ab-6898-4593-b8e7-f68d34f48545"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,31 +93,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPXY=\""
+ "\"AAAAAAABAKk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "53dfcb28-2798-42b5-a781-ed61e829c608"
+ "d286a1c0-87c8-46b9-b541-a5d95f2ea703"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "e1e33228-2b3b-4389-9cea-f248af88ec1f"
+ "46ce799e-d7a7-42c6-8a3b-26924846b53b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164253Z:e1e33228-2b3b-4389-9cea-f248af88ec1f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001457Z:46ce799e-d7a7-42c6-8a3b-26924846b53b"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:53 GMT"
+ "Tue, 13 Jul 2021 00:14:57 GMT"
],
"Content-Length": [
"786"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3289\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5541?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1NTQxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b570726d-309f-429c-ba39-beb0936dc436"
+ "0e14e2ab-6898-4593-b8e7-f68d34f48545"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,31 +159,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPXY=\""
+ "\"AAAAAAABAKk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a96c0086-a488-4420-b13e-f2c49143c673"
+ "c7bab1fd-ffe0-4b5e-be31-a623210eb44d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-correlation-request-id": [
- "0ad58c13-e954-43b4-89a9-f292338ec1e2"
+ "bc8294bd-869c-41c7-bb19-4e5e3db31632"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164254Z:0ad58c13-e954-43b4-89a9-f292338ec1e2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001457Z:bc8294bd-869c-41c7-bb19-4e5e3db31632"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:53 GMT"
+ "Tue, 13 Jul 2021 00:14:57 GMT"
],
"Content-Length": [
"786"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps3289\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "158bef2b-202f-4c5a-90a2-9e3f4fe9d883"
+ "aa78ec47-6243-4795-8601-b9bce7068337"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,31 +231,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01&asyncId=5f171b0ea2ca600fe4c29723&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "02d1fbf6-3f21-47cb-b9db-869b4062a079"
+ "9c1e92be-622b-4662-b6a2-867d06c5b22f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "038bec04-3c8f-4eed-8226-673a868fe4fe"
+ "4d4fc179-7cfd-45e2-8c2f-72c627a87c8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164254Z:038bec04-3c8f-4eed-8226-673a868fe4fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001458Z:4d4fc179-7cfd-45e2-8c2f-72c627a87c8b"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:53 GMT"
+ "Tue, 13 Jul 2021 00:14:57 GMT"
],
"Expires": [
"-1"
@@ -265,16 +268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01&asyncId=5f171b0ea2ca600fe4c29723&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWIwZWEyY2E2MDBmZTRjMjk3MjMmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa78ec47-6243-4795-8601-b9bce7068337"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -285,31 +291,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPYU=\""
+ "\"AAAAAAABAL4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4918ba86-403a-47f9-87fd-e22770d79105"
+ "d9e8f6db-1a0e-4519-88fb-8abb650f9eca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "b4154f6f-7a2f-4eee-ab4c-dab9fe37f0e7"
+ "512f19da-886b-464a-b8e5-079519616bb5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164324Z:b4154f6f-7a2f-4eee-ab4c-dab9fe37f0e7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001528Z:512f19da-886b-464a-b8e5-079519616bb5"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:24 GMT"
+ "Tue, 13 Jul 2021 00:15:27 GMT"
],
"Content-Length": [
"798"
@@ -321,26 +327,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7738?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzM4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4520ed0e-839e-4c41-9c16-54a0198cc153"
+ "aa78ec47-6243-4795-8601-b9bce7068337"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,31 +357,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPYU=\""
+ "\"AAAAAAABAL4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "89a2a841-3f4d-4dad-81d3-9dead509b96e"
+ "7338c314-5bbd-4002-b84d-98a43f1e91d6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "bf5173b0-516f-49bc-bedf-1a402e69ed11"
+ "901a51a4-4d0f-40ca-abb6-27b72cab8d02"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164324Z:bf5173b0-516f-49bc-bedf-1a402e69ed11"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001528Z:901a51a4-4d0f-40ca-abb6-27b72cab8d02"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:24 GMT"
+ "Tue, 13 Jul 2021 00:15:27 GMT"
],
"Content-Length": [
"798"
@@ -387,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3cb8fb88-b762-4c51-86e5-05b295cfcbea"
+ "7938c09b-aa40-43e6-b10d-5f39f1a667fc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -419,26 +425,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9bb85db6-7124-4b63-8fc3-5d2b72bd76f2"
+ "b189b315-a782-49b1-b45b-d04c7b1fa291"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "87a92b14-d4e9-4962-95e6-1f8535b18cc0"
+ "63564bdf-55ef-4ebd-83f0-d7a1f4ac523e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164325Z:87a92b14-d4e9-4962-95e6-1f8535b18cc0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001528Z:63564bdf-55ef-4ebd-83f0-d7a1f4ac523e"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:24 GMT"
+ "Tue, 13 Jul 2021 00:15:28 GMT"
],
"Content-Length": [
"15328"
@@ -450,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/ps2305/schemas/2504db61-d786-4470-b874-5fb9e6e90d4f\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"2504db61-d786-4470-b874-5fb9e6e90d4f\",\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/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305/schemas/37ccf3c2-b9b1-418a-b021-d99e7f480c88\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"37ccf3c2-b9b1-418a-b021-d99e7f480c88\",\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/ps2305/schemas/8a5e1516-1dda-4a61-94ea-c68adaeff046\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"8a5e1516-1dda-4a61-94ea-c68adaeff046\",\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/ps2305/schemas/a237d6a6-54a5-40d5-b2f3-a0f83ac0bcc4\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"a237d6a6-54a5-40d5-b2f3-a0f83ac0bcc4\",\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}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf0c15eb-507f-4df0-ba67-563d6f37dd09"
+ "6c14f18a-7a0f-441a-93cc-1e718f6c0bd6"
],
"If-Match": [
"*"
@@ -469,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -489,31 +495,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPZw=\""
+ "\"AAAAAAABAOc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1d9a1a5d-d03d-4b26-821a-bda4aea475db"
+ "c5d36d09-3f36-4e83-940f-bc30092959de"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "69a68ce0-32cd-448c-98d0-a45a05b9ea5d"
+ "a2fef3c8-6cea-4f48-a37a-f671208002bf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164325Z:69a68ce0-32cd-448c-98d0-a45a05b9ea5d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001534Z:a2fef3c8-6cea-4f48-a37a-f671208002bf"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:25 GMT"
+ "Tue, 13 Jul 2021 00:15:33 GMT"
],
"Content-Length": [
"835"
@@ -525,17 +531,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps2305\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps3289?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMzMjg5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a391b7e-49bb-4611-9115-f1373e94b7bb"
+ "c04a713f-b73b-484f-bfa2-103f60846abb"
],
"If-Match": [
"*"
@@ -544,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -560,8 +566,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a996e49c-30b8-443b-9fdb-c1a7bf66c7ff"
+ "ba73dbdd-467c-48d8-92a7-f2a60cece9fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -570,16 +579,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "0a6e281d-8b22-47b0-946c-577f41a58d55"
+ "3f27c067-209f-40f2-a11b-3219ce383898"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164325Z:0a6e281d-8b22-47b0-946c-577f41a58d55"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001535Z:3f27c067-209f-40f2-a11b-3219ce383898"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:25 GMT"
+ "Tue, 13 Jul 2021 00:15:35 GMT"
],
"Expires": [
"-1"
@@ -592,13 +598,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2305?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMzA1P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2a43915-e050-4b83-87c7-e537f9ff8efb"
+ "1ddb5d27-a9e9-4b44-9eab-78f67e7df8bd"
],
"If-Match": [
"*"
@@ -607,10 +613,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -623,8 +629,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "87520aef-00e6-444b-8206-99e675c592c7"
+ "012a88d3-0899-4885-af66-24d4dc41075d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +642,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "b6d148bf-f2d3-4eb3-b5b2-658fc73705ca"
+ "c01ba1f8-bd1b-4a00-9aab-56d5df2a4c36"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164325Z:b6d148bf-f2d3-4eb3-b5b2-658fc73705ca"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001535Z:c01ba1f8-bd1b-4a00-9aab-56d5df2a4c36"
],
"Date": [
- "Tue, 21 Jul 2020 16:43:25 GMT"
+ "Tue, 13 Jul 2021 00:15:35 GMT"
],
"Expires": [
"-1"
@@ -657,8 +663,8 @@
],
"Names": {
"": [
- "ps3289",
- "ps2305"
+ "ps5541",
+ "ps7738"
]
},
"Variables": {
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 41d0dc5f8bc2..24432048c155 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/ps6621?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "df952cc7-9efd-4bfb-8a5f-9e5605f57c61"
+ "7b104bfc-0578-481e-b17f-3385b91bb8d3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01&asyncId=5f1718c1a2ca600fe4c2967e&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cbc0e0e0-e61d-4eff-8bed-0d0d476a0d86"
+ "e83e57c8-5b2a-4b6a-a37c-ab881563f3be"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "994c07e8-5dc6-4386-9e3e-c9b1ab5ac641"
+ "47602173-9b65-4f2c-901b-4896d251e46f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163305Z:994c07e8-5dc6-4386-9e3e-c9b1ab5ac641"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000449Z:47602173-9b65-4f2c-901b-4896d251e46f"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:05 GMT"
+ "Tue, 13 Jul 2021 00:04:49 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01&asyncId=5f1718c1a2ca600fe4c2967e&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MThjMWEyY2E2MDBmZTRjMjk2N2UmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b104bfc-0578-481e-b17f-3385b91bb8d3"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +93,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO6A=\""
+ "\"AAAAAAAA/l4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2547fd83-75ec-4bfe-80e0-e80a6d756891"
+ "7dc78372-d396-4ccd-a0ea-9dfd8ae93093"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +111,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "d7574d4b-e272-43e9-bf13-49e4c77575ba"
+ "7c91ca8f-a764-496a-bc8c-3827a775af82"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163335Z:d7574d4b-e272-43e9-bf13-49e4c77575ba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000519Z:7c91ca8f-a764-496a-bc8c-3827a775af82"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:35 GMT"
+ "Tue, 13 Jul 2021 00:05:19 GMT"
],
"Content-Length": [
"884"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ab1fc42-2bf4-4473-b369-fdc16b650b7e"
+ "7b104bfc-0578-481e-b17f-3385b91bb8d3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +159,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO6A=\""
+ "\"AAAAAAAA/l4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ca2ca693-abdc-4d8f-bda1-7c085ada6c9b"
+ "31a79328-ec19-4a93-8060-a5cec53f977b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +177,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "a8ebee46-f7dc-4cd0-ac86-590024d37890"
+ "eef6b84e-2381-498d-9227-5b81a607c4cb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163335Z:a8ebee46-f7dc-4cd0-ac86-590024d37890"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000519Z:eef6b84e-2381-498d-9227-5b81a607c4cb"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:35 GMT"
+ "Tue, 13 Jul 2021 00:05:19 GMT"
],
"Content-Length": [
"884"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "efca2d65-a2bb-4970-b592-d2bcca219d63"
+ "292d5639-e27c-409b-b7bf-d38b1ea1ed8c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -222,13 +225,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO6A=\""
+ "\"AAAAAAAA/l4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1af4ab5c-5a06-495b-9301-72c50ea6cb68"
+ "32c92440-f5ff-4b6d-8fe1-a63719f192a1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +243,13 @@
"11994"
],
"x-ms-correlation-request-id": [
- "011ec954-ff58-4c50-a0b1-1bcc7b7d2adc"
+ "cfc7ed30-53ef-4dbf-9708-b6418440edda"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163338Z:011ec954-ff58-4c50-a0b1-1bcc7b7d2adc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000523Z:cfc7ed30-53ef-4dbf-9708-b6418440edda"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:38 GMT"
+ "Tue, 13 Jul 2021 00:05:22 GMT"
],
"Content-Length": [
"884"
@@ -258,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71937afc-bed4-4da5-bfd1-b359b1497d74"
+ "2b369c10-60db-4a8f-be01-92e8f0ef30e2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -290,8 +293,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3918d3ad-459f-487f-8332-71822bcd43e9"
+ "d7d3ca48-d03a-4098-bac2-fcdda24e0115"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -300,16 +306,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "f9d9ff61-bcfa-47c8-b101-377b62349f97"
+ "1bf3c487-0bbf-492a-a4da-5c4f88d0d015"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163336Z:f9d9ff61-bcfa-47c8-b101-377b62349f97"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000519Z:1bf3c487-0bbf-492a-a4da-5c4f88d0d015"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:35 GMT"
+ "Tue, 13 Jul 2021 00:05:19 GMT"
],
"Content-Length": [
"1287"
@@ -325,22 +328,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcy9wczY2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cfcf6efc-93f2-4145-8969-df1b60268afd"
+ "dc2e137d-bde9-4d1a-8c5b-9fde822cc781"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -351,13 +354,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO6A=\""
+ "\"AAAAAAAA/l4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6d177627-a17b-4c09-b57b-e8e4b800bdbc"
+ "b953563a-e1a9-433a-97c3-d009c2889d6f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -366,16 +372,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1687c205-4ef7-4342-8a76-31dfc51bfc5c"
+ "29504dcc-dfec-4fc7-a720-7533df53ed2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163336Z:1687c205-4ef7-4342-8a76-31dfc51bfc5c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000520Z:29504dcc-dfec-4fc7-a720-7533df53ed2a"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:35 GMT"
+ "Tue, 13 Jul 2021 00:05:20 GMT"
],
"Content-Length": [
"758"
@@ -387,26 +390,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps6621\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvYXBpcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce817833-3db4-4e54-bf97-ed1f2a791250"
+ "df5137f9-2760-4cd4-8c59-44fc9235a83b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -419,8 +422,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "135c707c-3ed5-4466-95df-ffbb0873344c"
+ "5594bc6b-4fbc-4d2f-8864-bc53f15c6cdf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -429,16 +435,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "f3a74a93-2ea0-4f4d-8bcb-9017d628a0b6"
+ "9f6f4802-fcb8-4877-9486-4993dd043686"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163337Z:f3a74a93-2ea0-4f4d-8bcb-9017d628a0b6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000521Z:9f6f4802-fcb8-4877-9486-4993dd043686"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:36 GMT"
+ "Tue, 13 Jul 2021 00:05:20 GMT"
],
"Content-Length": [
"1610"
@@ -450,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/ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/apis\",\r\n \"name\": \"ps6621\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be10d4e7-277b-4fdb-97dd-3beebe099627"
+ "36e83d38-5399-4fcc-a83d-e0f01b716fcb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -482,8 +485,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "58ca16ea-e511-422a-8c31-c49d6457c18a"
+ "8661a2c0-dcc2-4725-8481-2e5d11f1ba56"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -492,19 +498,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "2c77f5bf-3758-479a-b271-f6194dd474e4"
+ "3e82bbab-73a4-4706-b830-d8b2618d81c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163338Z:2c77f5bf-3758-479a-b271-f6194dd474e4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000523Z:3e82bbab-73a4-4706-b830-d8b2618d81c7"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:37 GMT"
+ "Tue, 13 Jul 2021 00:05:22 GMT"
],
"Content-Length": [
- "19177"
+ "27305"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -513,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/ps6621/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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"newPet\",\r\n \"generatedSample\": \"{\\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\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/ps6621/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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\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/ps6621/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 \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\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 \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\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/ps6621/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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"DefinedBodyParam\",\r\n \"generatedSample\": \"{\\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 \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\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/ps6621/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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\",\r\n \"generatedSample\": \"[\\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\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/ps6621/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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"{\\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\",\r\n \"generatedSample\": \"\\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\r\\n 0\\r\\n string\\r\\n\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\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/ps6621/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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\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 },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\",\r\n \"generatedSample\": \"\\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"{\\r\\n \\\"code\\\": 0,\\r\\n \\\"message\\\": \\\"string\\\"\\r\\n}\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\",\r\n \"generatedSample\": \"\\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/ps6621/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps8005\",\r\n \"sourceApiId\": \"/apis/ps6621;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiRevisionDescription\": \"ps9980\",\r\n \"sourceApiId\": \"/apis/ps2216;rev=1\",\r\n \"path\": \"swaggerapifromFile\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed70b804-b411-478a-ba10-4ea585ff9d30"
+ "292d5639-e27c-409b-b7bf-d38b1ea1ed8c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -549,13 +552,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO8I=\""
+ "\"AAAAAAAA/os=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ba86405a-6cd2-4381-8de1-ca34b8258c97"
+ "df5fcff5-a77d-47a9-b895-495da554280f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -564,16 +570,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "190123e4-ddde-4883-86e4-1183e3f30c9c"
+ "3764ec60-19f0-416e-a5dc-f891e0b4141a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163342Z:190123e4-ddde-4883-86e4-1183e3f30c9c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000526Z:3764ec60-19f0-416e-a5dc-f891e0b4141a"
],
"Date": [
- "Tue, 21 Jul 2020 16:33:41 GMT"
+ "Tue, 13 Jul 2021 00:05:26 GMT"
],
"Content-Length": [
"913"
@@ -585,20 +588,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;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\": \"ps8005\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "292d5639-e27c-409b-b7bf-d38b1ea1ed8c"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,13 +615,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO8I=\""
+ "\"AAAAAAAA/os=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "77577471-71a8-4968-8efa-254aec4190e9"
+ "7e1e516c-5191-45d1-a00b-a13452fa0266"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -624,16 +633,13 @@
"11993"
],
"x-ms-correlation-request-id": [
- "4a08e18e-b3e0-4bbe-92dc-c8e926074bed"
+ "a80580ab-2723-4b1d-bc9c-69ed33f787a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163412Z:4a08e18e-b3e0-4bbe-92dc-c8e926074bed"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000556Z:a80580ab-2723-4b1d-bc9c-69ed33f787a1"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:11 GMT"
+ "Tue, 13 Jul 2021 00:05:56 GMT"
],
"Content-Length": [
"913"
@@ -645,26 +651,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;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\": \"ps8005\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05b741c0-f1af-4615-9f40-92761ea8f6dc"
+ "def37544-7b13-42ef-9381-6e31add44c72"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -675,13 +681,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO8I=\""
+ "\"AAAAAAAA/os=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f958b774-1e66-4ec5-b5b7-996e9fa144da"
+ "56b4679c-9dc1-43b6-bd64-88978d282ff6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -690,16 +699,13 @@
"11991"
],
"x-ms-correlation-request-id": [
- "5aa125d1-552e-4f21-815a-a7bb9e4e981d"
+ "60107bf7-b809-4c03-82c0-1b6bd120c444"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163413Z:5aa125d1-552e-4f21-815a-a7bb9e4e981d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000557Z:60107bf7-b809-4c03-82c0-1b6bd120c444"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:12 GMT"
+ "Tue, 13 Jul 2021 00:05:56 GMT"
],
"Content-Length": [
"913"
@@ -711,26 +717,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps6621;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\": \"ps8005\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D2/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95e0025d-7f7e-46fe-a479-4fd020acfebb"
+ "a26213d6-cfdf-4a8b-95e6-55e68b9f5a75"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -743,8 +749,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "36e63614-e0a2-4677-85c7-994a9d621b34"
+ "3d4c664a-78e5-454e-96a0-3d4fa1fc0026"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -753,19 +762,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "cfe13fe4-599d-4f75-9c0d-bcca84602086"
+ "5a4b0ee3-2b83-49d0-923d-a65c8f4e3c04"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163412Z:cfe13fe4-599d-4f75-9c0d-bcca84602086"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000556Z:5a4b0ee3-2b83-49d0-923d-a65c8f4e3c04"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:12 GMT"
+ "Tue, 13 Jul 2021 00:05:56 GMT"
],
"Content-Length": [
- "16923"
+ "27353"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -774,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/ps6621;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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"newPet\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\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/ps6621;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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\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/ps6621;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 \"sample\": \"{\\r\\n \\\"id\\\": 2,\\r\\n \\\"name\\\": \\\"myreqpet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\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 \"sample\": \"{\\r\\n \\\"id\\\": 3,\\r\\n \\\"name\\\": \\\"myresppet\\\"\\r\\n}\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\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/ps6621;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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"DefinedBodyParam\"\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 \"sample\": \"contenttype1 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\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/ps6621;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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"Pets2Get200ApplicationJsonResponse\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\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/ps6621;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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"pet\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\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/ps6621;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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"petArray\"\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 \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"schemaId\": \"5f1718c1a2ca600fe4c2967d\",\r\n \"typeName\": \"errorModel\"\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/ps6621;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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/revisions?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/revisions?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JldmlzaW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30d4ddac-10c9-4ea3-b14d-a6de613b502e"
+ "24220d74-9e07-481a-8387-76598aec2c05"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -806,8 +812,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "16e31dc1-8c46-4c5f-85dd-c36862e17e45"
+ "95565616-3ca9-4d2c-be02-7a33e8d241ac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -816,19 +825,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "53fae145-9499-460a-8bb1-ac51aa5a2e12"
+ "ae483ff7-f65d-4f41-84c8-cc7aa732850c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163413Z:53fae145-9499-460a-8bb1-ac51aa5a2e12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000557Z:ae483ff7-f65d-4f41-84c8-cc7aa732850c"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:12 GMT"
+ "Tue, 13 Jul 2021 00:05:57 GMT"
],
"Content-Length": [
- "598"
+ "597"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -837,26 +843,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/apis/ps6621;rev=2/revisions/ps6621;rev=2\",\r\n \"apiId\": \"/apis/ps6621;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2020-07-21T16:33:41.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:33:42.093Z\",\r\n \"description\": \"ps8005\",\r\n \"privateUrl\": \"/swaggerapifromFile;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"id\": \"/apis/ps6621;rev=1/revisions/ps6621;rev=1\",\r\n \"apiId\": \"/apis/ps6621;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2020-07-21T16:33:05.293Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:33:05.327Z\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps6621;rev=2\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/ps2216;rev=2\",\r\n \"notes\": \"ps1845\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "013a045f-21c7-4b49-afc9-00f2003e8a13"
+ "f8af4145-33ef-48ee-a41c-b1165ca0083c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -873,13 +879,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO+M=\""
+ "\"AAAAAAAA/rk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cffa2bba-07b0-467f-9d7f-efb2999a39a9"
+ "eafffad5-b194-4fb4-aebe-ac1c313a271b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -888,19 +897,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "726043dd-df08-46f3-89a5-d53e8a7fef17"
+ "260014d7-bd93-437a-8abf-69082011b073"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163414Z:726043dd-df08-46f3-89a5-d53e8a7fef17"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000558Z:260014d7-bd93-437a-8abf-69082011b073"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:13 GMT"
+ "Tue, 13 Jul 2021 00:05:57 GMT"
],
"Content-Length": [
- "601"
+ "603"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -909,26 +915,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.2143432Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.2143432Z\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0582d12-4f2f-497e-8b3a-6a949a477d1c"
+ "f8cf4dbb-a007-48a5-bda1-c7dc188d349c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -939,13 +945,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO+M=\""
+ "\"AAAAAAAA/rk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cb353d11-a9ec-4aa6-81f4-558f7703f8d0"
+ "833f6e91-ca6b-4d83-a6b3-c52ff6948e14"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -954,19 +963,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "622a6a47-7fbd-4fc5-8f38-6a7e7f106f0c"
+ "183b1e18-b7b4-44ff-8bcf-0e5e1f563cc5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163414Z:622a6a47-7fbd-4fc5-8f38-6a7e7f106f0c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000558Z:183b1e18-b7b4-44ff-8bcf-0e5e1f563cc5"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:13 GMT"
+ "Tue, 13 Jul 2021 00:05:58 GMT"
],
"Content-Length": [
- "593"
+ "594"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -975,26 +981,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps6395\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9ba910d-d33e-4375-9496-3c8a26a7fe8d"
+ "f8cf4dbb-a007-48a5-bda1-c7dc188d349c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1005,13 +1011,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAO+Y=\""
+ "\"AAAAAAAA/sA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2e7e511d-5bd1-474e-a610-0e9bac885140"
+ "02d6403e-cc34-47a0-b85b-47b58eba63bd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1020,19 +1029,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "3ec54b4a-805a-42cc-af5b-9660d569b893"
+ "31e96383-a4a5-4aed-89c6-2650750b40e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163415Z:3ec54b4a-805a-42cc-af5b-9660d569b893"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000559Z:31e96383-a4a5-4aed-89c6-2650750b40e7"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:14 GMT"
+ "Tue, 13 Jul 2021 00:05:58 GMT"
],
"Content-Length": [
- "593"
+ "594"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1041,17 +1047,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps1127\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases/ps874?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzL3BzODc0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621\",\r\n \"notes\": \"ps1127\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a21e5202-47b8-4bbb-a379-5d284e9a5010"
+ "f8cf4dbb-a007-48a5-bda1-c7dc188d349c"
],
"If-Match": [
"*"
@@ -1060,10 +1066,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1079,11 +1085,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAA/sA=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "69c166bb-8b2a-4190-9d39-f025e30f68e3"
+ "6c7e2949-de34-4f5d-9f10-6e9434a3b6ca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1092,41 +1104,44 @@
"1195"
],
"x-ms-correlation-request-id": [
- "d3c35835-7663-47d9-a856-48a2d08241cb"
+ "5b46cd85-13ed-4a45-91e5-f1405a4dc2ea"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163414Z:d3c35835-7663-47d9-a856-48a2d08241cb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000559Z:5b46cd85-13ed-4a45-91e5-f1405a4dc2ea"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:14 GMT"
+ "Tue, 13 Jul 2021 00:05:58 GMT"
+ ],
+ "Content-Length": [
+ "598"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621/releases?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxL3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps2216/releases?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMyMjE2L3JlbGVhc2VzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5bbf9e5-4808-4ed7-9398-aea431454b64"
+ "df3acd9e-3c0e-47f8-810c-fa33f6768f01"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1139,8 +1154,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3c38dd2f-a212-497e-88b6-ba3bc62b65d1"
+ "a2c31767-d642-459e-86e0-e5034d303a32"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1149,19 +1167,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "195f523b-7d77-40b0-97ff-547259551b03"
+ "a7510137-c3e7-4e66-b169-24e8abf91abb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163415Z:195f523b-7d77-40b0-97ff-547259551b03"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000559Z:a7510137-c3e7-4e66-b169-24e8abf91abb"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:14 GMT"
+ "Tue, 13 Jul 2021 00:05:59 GMT"
],
"Content-Length": [
- "499"
+ "500"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1170,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/ps6621/releases/ps874\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"ps874\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"updatedDateTime\": \"2020-07-21T16:34:14.213Z\",\r\n \"notes\": \"ps1127\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621%3Brev%3D1?deleteRevisions=false&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxJTNCcmV2JTNEMT9kZWxldGVSZXZpc2lvbnM9ZmFsc2UmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "743c90b8-a0bd-4ad2-be4f-61af47221904"
+ "01e64f25-f587-4bac-8ad2-cbb9b5fa94e8"
],
"If-Match": [
"*"
@@ -1189,10 +1204,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1205,8 +1220,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "96b51515-0a33-4e08-a9b1-104dcae57133"
+ "ffbd75c1-dbd6-443d-861d-c8082d46412a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1215,16 +1233,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "2b42301e-533a-43ec-b51c-786201dd429b"
+ "b2af84ca-eba4-445b-a225-2ab96993f109"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163416Z:2b42301e-533a-43ec-b51c-786201dd429b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000600Z:b2af84ca-eba4-445b-a225-2ab96993f109"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:15 GMT"
+ "Tue, 13 Jul 2021 00:05:59 GMT"
],
"Expires": [
"-1"
@@ -1237,13 +1252,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6621?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2NjIxP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "148cf514-77b5-4ac4-a4ed-08ac24fd1dde"
+ "8574bfc3-558d-47dc-b481-aa010dda6fb6"
],
"If-Match": [
"*"
@@ -1252,10 +1267,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1268,8 +1283,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "31992756-211a-4ac7-8f5f-dde05fdff96a"
+ "ca8718f7-2901-471a-9e29-f82fe9bd2555"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1278,16 +1296,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "b1f4b66f-a222-452f-812d-28b14aaf0fb6"
+ "47181a82-6e58-4d70-94e7-2e23830897af"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163417Z:b1f4b66f-a222-452f-812d-28b14aaf0fb6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000601Z:47181a82-6e58-4d70-94e7-2e23830897af"
],
"Date": [
- "Tue, 21 Jul 2020 16:34:16 GMT"
+ "Tue, 13 Jul 2021 00:06:00 GMT"
],
"Expires": [
"-1"
@@ -1302,11 +1317,11 @@
],
"Names": {
"": [
- "ps6621",
- "ps874",
- "ps8005",
- "ps6395",
- "ps1127"
+ "ps2216",
+ "ps6066",
+ "ps9980",
+ "ps1845",
+ "ps7283"
]
},
"Variables": {
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 da2137199b93..82dd3e67ed55 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/ps1786?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9968\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"displayName\": \"ps9920\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ]\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43790c31-72d2-48b0-8508-8579c9c19bf0"
+ "498cb380-2bcb-475f-90df-28d7aaf9e44f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPo4=\""
+ "\"AAAAAAABAi8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8a6e9992-9eba-46ae-9116-272199d8ec3e"
+ "42928d2f-fe56-4d94-8c23-f8e6a9bfbd7a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "54c6df2c-8f76-485e-bdb7-3adf04608ac3"
+ "586c0c95-652f-4fe2-9410-73a562d4d300"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165021Z:54c6df2c-8f76-485e-bdb7-3adf04608ac3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002334Z:586c0c95-652f-4fe2-9410-73a562d4d300"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:20 GMT"
+ "Tue, 13 Jul 2021 00:23:33 GMT"
],
"Content-Length": [
"739"
@@ -69,20 +69,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1786\",\r\n \"properties\": {\r\n \"displayName\": \"ps9920\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9968\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\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\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8106?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MTA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "498cb380-2bcb-475f-90df-28d7aaf9e44f"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,13 +96,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPo4=\""
+ "\"AAAAAAABAi8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "14c42fc8-069e-47c1-9643-7316d511ab98"
+ "0fe1ed0d-df5c-44b5-807a-b6455ff4bed8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,16 +114,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "231ed694-0194-4c09-a554-08d66178c7b4"
+ "4e8738fe-ecde-4e8e-a47c-6d5f5edaf763"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165051Z:231ed694-0194-4c09-a554-08d66178c7b4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002404Z:4e8738fe-ecde-4e8e-a47c-6d5f5edaf763"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:51 GMT"
+ "Tue, 13 Jul 2021 00:24:03 GMT"
],
"Content-Length": [
"739"
@@ -129,26 +132,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps1786\",\r\n \"properties\": {\r\n \"displayName\": \"ps9920\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"ps9968\",\r\n \"subscriptionRequired\": true,\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/newapi\",\r\n \"path\": \"ps8246\",\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\": \"ps6732\",\r\n \"query\": \"ps9879\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7d08b36-2b06-4da6-b80e-417be720fb8a"
+ "00af67d8-a32e-457b-a82b-ac6e8a58b6e2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -161,8 +164,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "09cd27e9-dca5-47a5-a7bb-53b68f9f0a76"
+ "f0119d16-041f-416e-bf27-b7a5f611c2e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +177,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "79eb457f-ca87-4667-9171-9cef0bfde194"
+ "2fd08508-b287-4193-97e4-383bc91c987a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165051Z:79eb457f-ca87-4667-9171-9cef0bfde194"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002404Z:2fd08508-b287-4193-97e4-383bc91c987a"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:51 GMT"
+ "Tue, 13 Jul 2021 00:24:03 GMT"
],
"Content-Length": [
"34"
@@ -196,22 +199,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a87fd14c-50ea-49da-aee6-a35662f25277"
+ "1f19b0f6-53ba-43ea-a459-05334bc21686"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -224,8 +227,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b186f1ed-bded-4a42-b980-f76866c7b768"
+ "f2fa3f6f-2274-4bac-8d92-b233c6d63dae"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -234,16 +240,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "18e440d9-91bc-4722-9c81-d4299bfc4bf5"
+ "092e2ca0-47a0-4441-823a-fd658c0282ef"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165122Z:18e440d9-91bc-4722-9c81-d4299bfc4bf5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002435Z:092e2ca0-47a0-4441-823a-fd658c0282ef"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:21 GMT"
+ "Tue, 13 Jul 2021 00:24:34 GMT"
],
"Content-Length": [
"2007"
@@ -255,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/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "1cfa2e13-fcdc-45ee-9650-84110f22c0f2"
+ "4fafc1bb-7ec5-4120-849e-73a48e7ae467"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -291,13 +294,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171ceba2ca600fe4c29777&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "62be4b4c-766d-491d-a57e-56de44a2afad"
+ "a1cab2b7-c382-468e-a5a1-6d620af81e21"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +312,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "59f5526f-e3d4-4238-be6f-c3a2ee48d7e7"
+ "bdbb5f97-0465-45e9-9f75-3e874b3f80b8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165051Z:59f5526f-e3d4-4238-be6f-c3a2ee48d7e7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002405Z:bdbb5f97-0465-45e9-9f75-3e874b3f80b8"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:51 GMT"
+ "Tue, 13 Jul 2021 00:24:04 GMT"
],
"Expires": [
"-1"
@@ -328,13 +331,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "2feed778-9f67-4895-aa26-0e41b5291a04"
+ "cffe3b42-d8f7-4d36-bb11-2ea8b2c13cac"
],
"If-Match": [
"*"
@@ -343,10 +346,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -363,13 +366,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171d0aa2ca600fe4c2977b&asyncCode=200"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "03a239bc-68ab-46f5-b336-04674e5ab226"
+ "c22680af-732f-450a-9a78-67418caed8f0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -378,16 +384,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "0c2af5d0-61dc-40e2-993c-2e6f1379fa85"
+ "9b79c5e0-d578-4c89-89a9-1bd578ed94f4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165122Z:0c2af5d0-61dc-40e2-993c-2e6f1379fa85"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002435Z:9b79c5e0-d578-4c89-89a9-1bd578ed94f4"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:22 GMT"
+ "Tue, 13 Jul 2021 00:24:35 GMT"
],
"Expires": [
"-1"
@@ -400,16 +403,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171ceba2ca600fe4c29777&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWNlYmEyY2E2MDBmZTRjMjk3NzcmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4fafc1bb-7ec5-4120-849e-73a48e7ae467"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -420,13 +426,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPpI=\""
+ "\"AAAAAAABAjQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c6fd9c0f-77bf-4731-a153-6bcb961c781d"
+ "6a873175-7c12-4e10-81c3-934f55b552eb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +444,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "8efebe29-331a-4d36-b829-36b70fa40272"
+ "0063c26a-7f4b-4ed4-a641-da8418815949"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165121Z:8efebe29-331a-4d36-b829-36b70fa40272"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002435Z:0063c26a-7f4b-4ed4-a641-da8418815949"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:21 GMT"
+ "Tue, 13 Jul 2021 00:24:34 GMT"
],
"Content-Length": [
"1699"
@@ -456,26 +462,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50389b38-8c4d-4559-946f-6d665d93b3c0"
+ "d9afff42-4222-4d0f-a8c0-0e5b3a59f7c4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -486,13 +492,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPpI=\""
+ "\"AAAAAAABAjQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fc37200f-5101-4e59-a857-6bde684b4c65"
+ "fa4daf56-4d4a-4a5f-aee7-5c144429b0cd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +510,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "023b6706-edc6-4295-b606-fd7ec12ebb09"
+ "22805eb8-e59d-4d80-8157-a955d81ad045"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165122Z:023b6706-edc6-4295-b606-fd7ec12ebb09"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002435Z:22805eb8-e59d-4d80-8157-a955d81ad045"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:21 GMT"
+ "Tue, 13 Jul 2021 00:24:34 GMT"
],
"Content-Length": [
"1699"
@@ -522,20 +528,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01&asyncId=5f171d0aa2ca600fe4c2977b&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWQwYWEyY2E2MDBmZTRjMjk3N2ImYXN5bmNDb2RlPTIwMA==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cffe3b42-d8f7-4d36-bb11-2ea8b2c13cac"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -546,13 +555,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPpM=\""
+ "\"AAAAAAABAjg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9eb9ded7-48fc-4459-8bf2-a53be3e4490c"
+ "d6e8ffca-ffde-4e4d-9f78-0918e3ed7585"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -561,16 +573,13 @@
"11994"
],
"x-ms-correlation-request-id": [
- "d55c9e24-760a-4ef1-9cd4-2e673e255d4f"
+ "137f1844-f074-4264-8343-11288f40e806"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165152Z:d55c9e24-760a-4ef1-9cd4-2e673e255d4f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002506Z:137f1844-f074-4264-8343-11288f40e806"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:52 GMT"
+ "Tue, 13 Jul 2021 00:25:06 GMT"
],
"Content-Length": [
"1525"
@@ -582,17 +591,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"ps1151\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7007a798-5e8e-49a3-8bc5-746dd22f5d4f"
+ "a602e973-2809-4c87-a660-a05a177090d7"
],
"If-Match": [
"*"
@@ -601,10 +610,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -617,8 +626,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a660a7b5-a384-4ca3-9dd9-4aab97a1d7e9"
+ "b0f39765-4df7-4f96-87fe-01b70a8efa3d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -627,16 +639,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "9515a1eb-34f5-4286-8e86-cef80e959faa"
+ "f763c387-9f6e-430a-9692-1bbd61ee6e51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165153Z:9515a1eb-34f5-4286-8e86-cef80e959faa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002507Z:f763c387-9f6e-430a-9692-1bbd61ee6e51"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:52 GMT"
+ "Tue, 13 Jul 2021 00:25:06 GMT"
],
"Expires": [
"-1"
@@ -649,13 +658,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786/schemas/ps1151?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2L3NjaGVtYXMvcHMxMTUxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d53095f6-c1d5-4b92-ae73-3f2d62d0b12b"
+ "e0ffb94c-0d23-4368-a5cb-b53ffdd3968b"
],
"If-Match": [
"*"
@@ -664,10 +673,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -680,8 +689,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1a0ef89f-73db-45ec-b398-703d68304736"
+ "20ec15f1-ebdd-4855-9289-531dadf7a7f6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -690,16 +702,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "624ac5dc-f0cc-41df-826c-52827a87e858"
+ "0f9b91ef-1951-4176-a8da-a0b87901f81c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165153Z:624ac5dc-f0cc-41df-826c-52827a87e858"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002507Z:0f9b91ef-1951-4176-a8da-a0b87901f81c"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:52 GMT"
+ "Tue, 13 Jul 2021 00:25:07 GMT"
],
"Expires": [
"-1"
@@ -709,13 +718,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps1786?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHMxNzg2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ecc25af1-869c-4a93-bf29-ccca2f0661b0"
+ "50452192-a38a-4803-9a17-cedb5d9e551f"
],
"If-Match": [
"*"
@@ -724,10 +733,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -740,8 +749,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "adc8d910-be6a-4d20-bfe1-26585e10d106"
+ "765eed66-9156-4142-86b0-21ca29898431"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -750,16 +762,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "9f4e08b7-4aa1-4a84-8ba2-9299cb43ffa0"
+ "4419bfdc-2d26-41ea-8dab-65617f09085a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165153Z:9f4e08b7-4aa1-4a84-8ba2-9299cb43ffa0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T002507Z:4419bfdc-2d26-41ea-8dab-65617f09085a"
],
"Date": [
- "Tue, 21 Jul 2020 16:51:52 GMT"
+ "Tue, 13 Jul 2021 00:25:07 GMT"
],
"Expires": [
"-1"
@@ -774,13 +783,13 @@
],
"Names": {
"": [
- "ps1786",
- "ps1151",
- "ps9920",
- "ps9968",
- "ps8246",
- "ps6732",
- "ps9879"
+ "ps8106",
+ "ps3536",
+ "ps6703",
+ "ps4102",
+ "ps8180",
+ "ps9383",
+ "ps9012"
]
},
"Variables": {
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 7c874762695c..8518e51f08db 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/ps8346?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "dde07a2e-acb9-409d-bae8-c7683ed161aa"
+ "95ea760c-5b00-439a-81ad-c35fc0be313f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01&asyncId=5f171938a2ca600fe4c2968f&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1258fb6e-db04-4311-b57c-36cbdab89065"
+ "ec62aaaa-874e-4d05-823b-b7fdc017cffc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "7bf1596b-b81b-4b43-8e94-d863d6211e02"
+ "e4f7d0c7-02e0-4e6f-bbfe-42d156c6fb58"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163504Z:7bf1596b-b81b-4b43-8e94-d863d6211e02"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000648Z:e4f7d0c7-02e0-4e6f-bbfe-42d156c6fb58"
],
"Date": [
- "Tue, 21 Jul 2020 16:35:03 GMT"
+ "Tue, 13 Jul 2021 00:06:48 GMT"
],
"Expires": [
"-1"
@@ -70,16 +70,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01&asyncId=5f171938a2ca600fe4c2968f&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTkzOGEyY2E2MDBmZTRjMjk2OGYmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "95ea760c-5b00-439a-81ad-c35fc0be313f"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +93,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPDo=\""
+ "\"AAAAAAAA/zQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "87068668-385d-408b-88ee-89b4ed83b5d6"
+ "3cdad73d-4bb5-4fd9-9cf7-22dcca62ecfd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +111,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "2f5a969b-6935-48f6-abf3-8592a6c14b5c"
+ "e8ea98be-abaa-4f1e-96be-e2f4541d7690"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163534Z:2f5a969b-6935-48f6-abf3-8592a6c14b5c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000718Z:e8ea98be-abaa-4f1e-96be-e2f4541d7690"
],
"Date": [
- "Tue, 21 Jul 2020 16:35:34 GMT"
+ "Tue, 13 Jul 2021 00:07:17 GMT"
],
"Content-Length": [
"786"
@@ -126,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8346\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps5882?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM1ODgyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b61470d-bc6b-4daf-a658-2f339f8f74dc"
+ "95ea760c-5b00-439a-81ad-c35fc0be313f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -156,13 +159,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPDo=\""
+ "\"AAAAAAAA/zQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "49cd0db3-e081-48b7-9561-9961a6d2c3d2"
+ "71b3c622-893c-4494-a0d4-1f95ef2eb171"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +177,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "43145460-a79d-44a8-8ce5-e879e1132acc"
+ "d46f3bfb-a4e0-4004-a682-d2bf2c24e209"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163534Z:43145460-a79d-44a8-8ce5-e879e1132acc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000718Z:d46f3bfb-a4e0-4004-a682-d2bf2c24e209"
],
"Date": [
- "Tue, 21 Jul 2020 16:35:34 GMT"
+ "Tue, 13 Jul 2021 00:07:17 GMT"
],
"Content-Length": [
"786"
@@ -192,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8346\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "642f4e0d-49fd-4490-a566-0b388d98d19c"
+ "4c5229c2-2182-4039-9fba-9cd525eae999"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -224,8 +227,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6924c263-0828-48fa-8af8-9905e97688a8"
+ "86f6343d-4d18-49a6-9b2d-cba5faa5c353"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -234,16 +240,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "4a99c5d5-4b4f-4182-a9b8-ebba795e9e12"
+ "6a71f2f0-a620-4585-9dae-7f36fd1ddff6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163535Z:4a99c5d5-4b4f-4182-a9b8-ebba795e9e12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000718Z:6a71f2f0-a620-4585-9dae-7f36fd1ddff6"
],
"Date": [
- "Tue, 21 Jul 2020 16:35:34 GMT"
+ "Tue, 13 Jul 2021 00:07:17 GMT"
],
"Content-Length": [
"6975"
@@ -255,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/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55bef473-4a6d-4ef7-ab22-ffa1e84124a5"
+ "bac5cb48-dbfe-4044-be2f-0ae9aa1a23e8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -287,8 +290,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f2d43a17-7af8-4857-a298-20ab530ea190"
+ "fc22f2d8-88ce-4fd3-ba20-46cf86a055a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -297,16 +303,13 @@
"11994"
],
"x-ms-correlation-request-id": [
- "d5fa4b63-5a83-4072-8184-f60e25fbc435"
+ "e8490aae-0ad2-46e1-89e5-a99d1c1c1ab0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163606Z:d5fa4b63-5a83-4072-8184-f60e25fbc435"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000749Z:e8490aae-0ad2-46e1-89e5-a99d1c1c1ab0"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:05 GMT"
+ "Tue, 13 Jul 2021 00:07:48 GMT"
],
"Content-Length": [
"1960"
@@ -318,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/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "58baaeb4-fbf8-453f-bcde-83ec288d6327"
+ "1299308a-b0b1-41ee-8447-af5371cd133f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -354,13 +357,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171957a2ca600fe4c29696&asyncCode=200"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5a70e26c-6626-4439-ae55-3126904b067f"
+ "dc498e22-127d-4b2a-b796-a7f4c71c6a6f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,16 +375,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "e22c14e4-2231-44c1-997e-3358e3a2742b"
+ "510e0d71-9936-4f36-a8b7-faae82c3180a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163535Z:e22c14e4-2231-44c1-997e-3358e3a2742b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000719Z:510e0d71-9936-4f36-a8b7-faae82c3180a"
],
"Date": [
- "Tue, 21 Jul 2020 16:35:35 GMT"
+ "Tue, 13 Jul 2021 00:07:18 GMT"
],
"Expires": [
"-1"
@@ -391,13 +394,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "6d355e17-a1fe-45e7-9e27-cedeb06ea125"
+ "6d08ec6f-3107-4eac-bae7-58a3abeeccfc"
],
"If-Match": [
"*"
@@ -406,10 +409,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -426,13 +429,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171976a2ca600fe4c2969a&asyncCode=200"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2f7a0d1d-0b85-41aa-b2f4-abd62bf3a3ae"
+ "1c4b0d93-a982-443f-b4b7-0048901a2b3c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,16 +447,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "f534d69a-9f50-452c-a070-5d3113313a3d"
+ "576b7a0d-95b8-42c9-b25a-442abb49273d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163606Z:f534d69a-9f50-452c-a070-5d3113313a3d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000750Z:576b7a0d-95b8-42c9-b25a-442abb49273d"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:06 GMT"
+ "Tue, 13 Jul 2021 00:07:49 GMT"
],
"Expires": [
"-1"
@@ -463,16 +466,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171957a2ca600fe4c29696&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTk1N2EyY2E2MDBmZTRjMjk2OTYmYXN5bmNDb2RlPTIwMA==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1299308a-b0b1-41ee-8447-af5371cd133f"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -483,13 +489,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPEg=\""
+ "\"AAAAAAAA/0k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b5367885-39ff-47d1-a68d-ff164a3ccc77"
+ "e1c3f74b-3467-4016-aa88-b7be05a51795"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -498,16 +507,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "24aa07b3-d6f8-4baf-991b-5ff520fed905"
+ "6d647246-de7b-46c6-8d12-964ce7c98648"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163605Z:24aa07b3-d6f8-4baf-991b-5ff520fed905"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000749Z:6d647246-de7b-46c6-8d12-964ce7c98648"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:05 GMT"
+ "Tue, 13 Jul 2021 00:07:48 GMT"
],
"Content-Length": [
"1876"
@@ -519,26 +525,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "734cb0be-017f-4734-b84d-b314bbf8354a"
+ "42a1d561-1423-4723-b32e-77b41f861533"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -549,13 +555,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPEg=\""
+ "\"AAAAAAAA/0k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d771cff9-b3b8-4f8c-9f19-59fe2e300e0e"
+ "64e58306-7110-4266-9cd6-e0fcb2cd4f9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -564,16 +573,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "7e290778-c2c6-4863-952a-4a3e099b3a12"
+ "ec5e55e8-52dc-4848-984a-78feaaa7e046"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163605Z:7e290778-c2c6-4863-952a-4a3e099b3a12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000749Z:ec5e55e8-52dc-4848-984a-78feaaa7e046"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:05 GMT"
+ "Tue, 13 Jul 2021 00:07:48 GMT"
],
"Content-Length": [
"1876"
@@ -585,20 +591,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e?api-version=2019-12-01&asyncId=5f171976a2ca600fe4c2969a&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2L3NjaGVtYXMvYWY1NGEwOTgtYjRkNS00NThlLWE5NzYtMjkyOGJjNTVjYTJlP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MTk3NmEyY2E2MDBmZTRjMjk2OWEmYXN5bmNDb2RlPTIwMA==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d08ec6f-3107-4eac-bae7-58a3abeeccfc"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,13 +618,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPEk=\""
+ "\"AAAAAAAA/00=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "772d1c63-8e08-469e-9372-1d5d871ce77e"
+ "d1d19365-b721-4854-9e45-955fa1cc0bce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -624,16 +636,13 @@
"11993"
],
"x-ms-correlation-request-id": [
- "7754e847-9ae4-4d21-8dd6-554f29b9258a"
+ "16b892a2-7207-4cb9-80c0-b60855927610"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163636Z:7754e847-9ae4-4d21-8dd6-554f29b9258a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000820Z:16b892a2-7207-4cb9-80c0-b60855927610"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:36 GMT"
+ "Tue, 13 Jul 2021 00:08:19 GMT"
],
"Content-Length": [
"1855"
@@ -645,17 +654,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346/schemas/af54a098-b4d5-458e-a976-2928bc55ca2e\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"af54a098-b4d5-458e-a976-2928bc55ca2e\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8346?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4MzQ2P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b85581d8-49c1-4a74-9b4b-b558343826f2"
+ "ef45c5f7-2cad-4ff5-a33b-1c0747701109"
],
"If-Match": [
"*"
@@ -664,10 +673,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -680,8 +689,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5feb2283-10d2-4e17-b9ab-e60d334662fc"
+ "f3dc754d-ef67-47b4-981a-87b3bdfd9f30"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -690,16 +702,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "8f2daed4-7013-409f-ac45-c87030210b26"
+ "a36f9e0e-06d2-48e0-9f62-642d7302886c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163636Z:8f2daed4-7013-409f-ac45-c87030210b26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000820Z:a36f9e0e-06d2-48e0-9f62-642d7302886c"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:36 GMT"
+ "Tue, 13 Jul 2021 00:08:19 GMT"
],
"Expires": [
"-1"
@@ -714,8 +723,8 @@
],
"Names": {
"": [
- "ps8346",
- "ps6242"
+ "ps5882",
+ "ps9374"
]
},
"Variables": {
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 62007c549efa..077f929ac23a 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c310758-14d7-48ed-a8e0-13674e245f19"
+ "694059a0-5262-4fbc-8f5c-f5722044436f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b9656ff4-d122-4980-9c27-3706b875d56b"
+ "7a125e32-266d-4463-994b-4ce15dda918b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11999"
],
"x-ms-correlation-request-id": [
- "2ab4e086-dc69-4c3a-9d1a-33f004affb9c"
+ "eb0d1e3f-01a6-4ec6-b347-e40b05f9f16d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164538Z:2ab4e086-dc69-4c3a-9d1a-33f004affb9c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001753Z:eb0d1e3f-01a6-4ec6-b347-e40b05f9f16d"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:37 GMT"
+ "Tue, 13 Jul 2021 00:17:52 GMT"
],
"Content-Length": [
"34"
@@ -64,28 +64,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3041\",\r\n \"versionQueryName\": \"ps264\",\r\n \"displayName\": \"ps9370\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1439\",\r\n \"versionQueryName\": \"ps2476\",\r\n \"displayName\": \"ps9130\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f2d894e-ee9a-4479-88b3-bdb4b76c9e67"
+ "a691f1da-10c0-47a6-8772-11c0956f42e1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "155"
+ "156"
]
},
"ResponseHeaders": {
@@ -96,34 +96,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPhU=\""
+ "\"AAAAAAABAYQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f33f04fb-162b-4b6b-aedb-3aae69ef602d"
+ "255df385-59aa-4ed3-9afe-31bb74f55762"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1199"
],
"x-ms-correlation-request-id": [
- "661d78b1-3e45-4247-83d8-a80da04c98f1"
+ "53261d75-f3a5-49b1-9ec6-54d8825d914d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164538Z:661d78b1-3e45-4247-83d8-a80da04c98f1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001753Z:53261d75-f3a5-49b1-9ec6-54d8825d914d"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:37 GMT"
+ "Tue, 13 Jul 2021 00:17:52 GMT"
],
"Content-Length": [
- "448"
+ "447"
],
"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/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps264\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps3041\",\r\n \"versionHeaderName\": \"ps9664\",\r\n \"displayName\": \"ps9370\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1439\",\r\n \"versionHeaderName\": \"ps5544\",\r\n \"displayName\": \"ps9130\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64f25056-f6fe-4657-bd1f-93ed3144da80"
+ "92590e3a-f817-4f1f-92a9-7694a9bbe7e7"
],
"If-Match": [
"*"
@@ -151,10 +151,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -171,34 +171,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPhg=\""
+ "\"AAAAAAABAYg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ce0b9145-a2ed-4e54-a357-cc0a88acae2a"
+ "7a4e2a98-9862-4aca-9be8-f22f0f09e511"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
+ "1198"
],
"x-ms-correlation-request-id": [
- "c62c96c9-7eda-4989-9dea-fe15c551d77f"
+ "d7d10e5f-92cc-42ca-b1ff-8b308dd16a19"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164539Z:c62c96c9-7eda-4989-9dea-fe15c551d77f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001754Z:d7d10e5f-92cc-42ca-b1ff-8b308dd16a19"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:38 GMT"
+ "Tue, 13 Jul 2021 00:17:53 GMT"
],
"Content-Length": [
- "450"
+ "448"
],
"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/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20278d99-1d66-4065-b94d-89f5cac0c560"
+ "92590e3a-f817-4f1f-92a9-7694a9bbe7e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,34 +237,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPhU=\""
+ "\"AAAAAAABAYQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7a904634-56b0-4319-bd53-3f895a700de2"
+ "3d7a4932-1b9a-4c0e-94b4-95324ce1de0a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11998"
],
"x-ms-correlation-request-id": [
- "f13aad40-a73c-4cbb-b884-8368c41275e3"
+ "33a1ae3a-b925-4890-adda-4afe14bef34f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164538Z:f13aad40-a73c-4cbb-b884-8368c41275e3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001754Z:33a1ae3a-b925-4890-adda-4afe14bef34f"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:38 GMT"
+ "Tue, 13 Jul 2021 00:17:53 GMT"
],
"Content-Length": [
- "448"
+ "447"
],
"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/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps264\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad6df4f9-395a-4561-9e04-7b03fc6b7bcf"
+ "69c44aee-95d2-4484-8152-566b4a4a0160"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -303,34 +303,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPhg=\""
+ "\"AAAAAAABAYg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "37ddc4e7-0766-42ef-906e-84bdd7ba9a61"
+ "148a735a-4f12-41e6-8b4f-23db93dc9c7b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11997"
],
"x-ms-correlation-request-id": [
- "9dbba547-78b5-4e41-a5ea-ed31347afc9e"
+ "959ceac3-949b-4e9d-8aba-b71fe78f5c08"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164539Z:9dbba547-78b5-4e41-a5ea-ed31347afc9e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001754Z:959ceac3-949b-4e9d-8aba-b71fe78f5c08"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:38 GMT"
+ "Tue, 13 Jul 2021 00:17:53 GMT"
],
"Content-Length": [
- "450"
+ "448"
],
"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/ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps1273\",\r\n \"properties\": {\r\n \"displayName\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "5395a132-44d5-4e3a-961f-45e8562c50c9"
+ "06568126-3f4f-4da1-8016-d6a9efb167e9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -375,31 +375,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01&asyncId=5f171bb3a2ca600fe4c29745&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "214c6b8b-9fcf-4658-a3aa-4dc0fe296c6d"
+ "886f6dbd-dbea-4fbc-a840-2504e473e350"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1187"
+ "1197"
],
"x-ms-correlation-request-id": [
- "b7643132-6a82-41c2-83aa-aaa903958858"
+ "39bc2b99-b01b-4ea8-90e9-392f6da314c6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164539Z:b7643132-6a82-41c2-83aa-aaa903958858"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001755Z:39bc2b99-b01b-4ea8-90e9-392f6da314c6"
],
"Date": [
- "Tue, 21 Jul 2020 16:45:38 GMT"
+ "Tue, 13 Jul 2021 00:17:54 GMT"
],
"Expires": [
"-1"
@@ -412,16 +412,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01&asyncId=5f171bb3a2ca600fe4c29745&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWJiM2EyY2E2MDBmZTRjMjk3NDUmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "06568126-3f4f-4da1-8016-d6a9efb167e9"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,31 +435,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPhs=\""
+ "\"AAAAAAABAYw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d02f8426-a996-465f-8818-c9f1ab79a6ba"
+ "a3d6cbd7-6b7a-4257-b545-bc49648dae4a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11996"
],
"x-ms-correlation-request-id": [
- "01fdcbbe-1308-4d5c-ba2e-05b8feb2daf1"
+ "588c5def-1de9-4a87-bf85-a2638f5067c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164610Z:01fdcbbe-1308-4d5c-ba2e-05b8feb2daf1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001825Z:588c5def-1de9-4a87-bf85-a2638f5067c0"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:09 GMT"
+ "Tue, 13 Jul 2021 00:18:25 GMT"
],
"Content-Length": [
"884"
@@ -468,26 +471,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8731?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NzMxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db55bde6-f223-4564-be8d-0c026166b3fe"
+ "06568126-3f4f-4da1-8016-d6a9efb167e9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,31 +501,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPhs=\""
+ "\"AAAAAAABAYw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7d60a78d-f093-46cd-b790-ecb346c5dd33"
+ "322d9a2f-339d-42a8-96e8-3f8512ba3ff8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11995"
],
"x-ms-correlation-request-id": [
- "4b65159c-83a1-4949-b839-ff17c93acb8d"
+ "a1bb91d4-e3f6-41c0-8f7a-c181e982a986"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164610Z:4b65159c-83a1-4949-b839-ff17c93acb8d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001825Z:a1bb91d4-e3f6-41c0-8f7a-c181e982a986"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:10 GMT"
+ "Tue, 13 Jul 2021 00:18:25 GMT"
],
"Content-Length": [
"884"
@@ -534,17 +537,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5JTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"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\": \"ps3041\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\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\": \"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "556c3896-79ad-422a-9a10-e7af1434135b"
+ "8ae96afe-6d9d-42e4-ac8c-b50bfc6245a1"
],
"If-Match": [
"*"
@@ -553,16 +556,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "837"
+ "836"
]
},
"ResponseHeaders": {
@@ -573,34 +576,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPjg=\""
+ "\"AAAAAAABAbU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "78e4b627-bf8a-49bd-949c-12738cb31e73"
+ "e6647eae-b2d2-43d2-885b-7b2587dc12fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1186"
+ "1196"
],
"x-ms-correlation-request-id": [
- "64736a7e-fd92-4765-a1b3-7b6e661c99c9"
+ "23b6d88c-57d8-4012-9388-b263bbf2c621"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164613Z:64736a7e-fd92-4765-a1b3-7b6e661c99c9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001826Z:23b6d88c-57d8-4012-9388-b263bbf2c621"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:13 GMT"
+ "Tue, 13 Jul 2021 00:18:26 GMT"
],
"Content-Length": [
- "1522"
+ "1520"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -609,17 +612,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps8499\",\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\": \"ps3041\",\r\n \"apiVersionSetId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"apiVersionSet\": {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273\",\r\n \"name\": \"ps9370\",\r\n \"description\": \"ps3041\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9664\"\r\n }\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps8499?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM4NDk5P2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11e9662d-1ba1-41cf-9652-a6504b22053f"
+ "e3e2482c-eab0-41e7-986b-b4ff11536ec5"
],
"If-Match": [
"*"
@@ -628,10 +631,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -644,26 +647,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "616a2553-1c37-4891-b12f-777fbd2c40db"
+ "77c09b37-a412-4db7-8fb7-fc91b2c91b5d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14989"
+ "14999"
],
"x-ms-correlation-request-id": [
- "18cb5863-ce32-4a9e-895a-689678ea8b23"
+ "aa429dba-606a-4bd6-b2bb-0c4f9f5e47e2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164614Z:18cb5863-ce32-4a9e-895a-689678ea8b23"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001826Z:aa429dba-606a-4bd6-b2bb-0c4f9f5e47e2"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:14 GMT"
+ "Tue, 13 Jul 2021 00:18:26 GMT"
],
"Expires": [
"-1"
@@ -676,13 +679,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzMTI3Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps698?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNjk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0e59a3f-af48-44a5-9212-2d91444bfa4d"
+ "4c04f2ec-1226-4a02-9322-5de9234619ae"
],
"If-Match": [
"*"
@@ -691,10 +694,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -707,26 +710,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9fd62748-eb60-42c9-98c3-4ac492553590"
+ "ef2a74ed-5877-4224-bf6c-8d71ed836b2b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14988"
+ "14998"
],
"x-ms-correlation-request-id": [
- "aa0c3835-c060-4195-80c3-9d58beed74c8"
+ "f30aedbf-a04a-4e70-ac4e-fe8cdf51392d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164614Z:aa0c3835-c060-4195-80c3-9d58beed74c8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001826Z:f30aedbf-a04a-4e70-ac4e-fe8cdf51392d"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:14 GMT"
+ "Tue, 13 Jul 2021 00:18:26 GMT"
],
"Expires": [
"-1"
@@ -738,12 +741,12 @@
],
"Names": {
"": [
- "ps8499",
- "ps1273",
- "ps9370",
- "ps264",
- "ps3041",
- "ps9664"
+ "ps8731",
+ "ps698",
+ "ps9130",
+ "ps2476",
+ "ps1439",
+ "ps5544"
]
},
"Variables": {
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 61311621c8b4..5cfd4596db91 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1984d2aa-7ef4-4591-874e-50da75ada028"
+ "e749a228-d30f-4a4b-b697-439a906a9034"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "70ff7ded-6b1c-4640-b5af-f7be3f1faed2"
+ "d4920a65-5591-4800-9272-92b64ec02c97"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7126bc90-391c-4092-9515-b444ee84727e"
+ "814c07b0-1660-4b5d-94c3-3b0eabdfca78"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164657Z:7126bc90-391c-4092-9515-b444ee84727e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001905Z:814c07b0-1660-4b5d-94c3-3b0eabdfca78"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:56 GMT"
+ "Tue, 13 Jul 2021 00:19:04 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/ps861?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6535\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"displayName\": \"ps7953\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8685\",\r\n \"versionQueryName\": \"ps6390\",\r\n \"displayName\": \"ps1973\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "efe83986-461c-4209-9e1e-3fc497b57e30"
+ "e7277a6c-b6bd-40fe-a8e1-45b05ffef395"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPko=\""
+ "\"AAAAAAABAdA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "51a8833a-cac9-4e6f-b1de-25b77444ba79"
+ "0a826adf-7105-4e20-8356-463f5bde287f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,19 +114,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "72cff134-3fd4-49f9-86f7-db9164c8804e"
+ "4113f4d5-7050-4b0e-a19f-2385f1ed05da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164657Z:72cff134-3fd4-49f9-86f7-db9164c8804e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001905Z:4113f4d5-7050-4b0e-a19f-2385f1ed05da"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:56 GMT"
+ "Tue, 13 Jul 2021 00:19:04 GMT"
],
"Content-Length": [
- "447"
+ "449"
],
"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/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6535\",\r\n \"versionHeaderName\": \"ps9791\",\r\n \"displayName\": \"ps7953\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8685\",\r\n \"versionHeaderName\": \"ps4909\",\r\n \"displayName\": \"ps1973\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ef8d370-f271-490d-97fd-cb315227d3c9"
+ "ce99e6cf-242c-43ab-b4fe-5b72ebd2ae1a"
],
"If-Match": [
"*"
@@ -151,10 +151,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -171,13 +171,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPk0=\""
+ "\"AAAAAAABAdQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a3da2b96-cf35-4a76-bb8c-77fec79af501"
+ "73731ab5-b0ca-4aff-a4e6-8f595ba4c7ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -186,19 +189,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "c92d3248-83f0-49f7-bccd-79d20a1f5946"
+ "f9f54d6d-3300-4e42-87dc-3d238ea1470d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164658Z:c92d3248-83f0-49f7-bccd-79d20a1f5946"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001906Z:f9f54d6d-3300-4e42-87dc-3d238ea1470d"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:57 GMT"
+ "Tue, 13 Jul 2021 00:19:05 GMT"
],
"Content-Length": [
- "448"
+ "450"
],
"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/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9791\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e88c6dc9-7bf2-4dbe-bf18-c2f879f1dd26"
+ "ce99e6cf-242c-43ab-b4fe-5b72ebd2ae1a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -237,13 +237,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPko=\""
+ "\"AAAAAAABAdA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8f2540d1-616d-4ebf-9ac4-455f4c8b55d3"
+ "08afc377-4f45-43a2-97fb-50688b569681"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,19 +255,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "62458d69-a2f1-43cc-930c-282af4f5ec62"
+ "71a69b0d-ceff-47a9-a0f9-c42705248919"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164657Z:62458d69-a2f1-43cc-930c-282af4f5ec62"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001905Z:71a69b0d-ceff-47a9-a0f9-c42705248919"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:57 GMT"
+ "Tue, 13 Jul 2021 00:19:05 GMT"
],
"Content-Length": [
- "447"
+ "449"
],
"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/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"ps5186\",\r\n \"versionHeaderName\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a108af89-7d7a-4dbe-8b27-8c08adc45558"
+ "ee400bcf-95ec-4bb6-880b-99676147b782"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -303,13 +303,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPk0=\""
+ "\"AAAAAAABAdQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7cc12869-eaec-4bc2-a373-85c05abf47ce"
+ "afffbc59-bc8a-4090-a7cd-f38000498a09"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -318,19 +321,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "42c631c6-b474-4a13-adc2-3b6df68ba2e1"
+ "3f2a578b-d642-4f0c-b966-e53846510cf8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164658Z:42c631c6-b474-4a13-adc2-3b6df68ba2e1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001906Z:3f2a578b-d642-4f0c-b966-e53846510cf8"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:57 GMT"
+ "Tue, 13 Jul 2021 00:19:05 GMT"
],
"Content-Length": [
- "448"
+ "450"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -339,32 +339,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861\",\r\n \"type\": \"Microsoft.ApiManagement/service/apiVersionSets\",\r\n \"name\": \"ps861\",\r\n \"properties\": {\r\n \"displayName\": \"ps7953\",\r\n \"description\": \"ps6535\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"ps9791\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiVersion\": \"2\",\r\n \"apiVersionSetId\": \"/apiVersionSets/ps861\",\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/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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c6e3be8-fb5e-4c3b-b704-62c5dcab5aba"
+ "58e4c51f-f9e1-4c47-bafd-764590fd9440"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "18305"
+ "18306"
]
},
"ResponseHeaders": {
@@ -375,13 +375,16 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01&asyncId=5f171c02a2ca600fe4c29755&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cd2d1573-1ac7-4a40-945e-3f32fadebc41"
+ "e25fa03f-b12f-4a0a-9d1d-acdc37ba7034"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -390,16 +393,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "c06573db-aa00-43e7-969b-bf5427b091a0"
+ "99fe33ec-822d-4237-bcc7-baa8205ff155"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164658Z:c06573db-aa00-43e7-969b-bf5427b091a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001906Z:99fe33ec-822d-4237-bcc7-baa8205ff155"
],
"Date": [
- "Tue, 21 Jul 2020 16:46:57 GMT"
+ "Tue, 13 Jul 2021 00:19:05 GMT"
],
"Expires": [
"-1"
@@ -412,16 +412,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01&asyncId=5f171c02a2ca600fe4c29755&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWMwMmEyY2E2MDBmZTRjMjk3NTUmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "58e4c51f-f9e1-4c47-bafd-764590fd9440"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -432,13 +435,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPlA=\""
+ "\"AAAAAAABAdg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b20c0d15-3b92-4074-bac6-79da700c4d0b"
+ "b8cc24c7-7eef-4bef-871d-921c99149b55"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -447,19 +453,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "08c40706-af62-46b6-be2e-a56745600a5d"
+ "4b0b6328-953a-47d3-8674-c788eb84e230"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164729Z:08c40706-af62-46b6-be2e-a56745600a5d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001936Z:4b0b6328-953a-47d3-8674-c788eb84e230"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:28 GMT"
+ "Tue, 13 Jul 2021 00:19:36 GMT"
],
"Content-Length": [
- "1101"
+ "1102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -468,26 +471,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9711\",\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/ps861\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps4334?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM0MzM0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fa45eafb-1683-4ad0-83c1-ce92eb4c45a2"
+ "58e4c51f-f9e1-4c47-bafd-764590fd9440"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -498,13 +501,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPlA=\""
+ "\"AAAAAAABAdg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5ed07e1d-fef9-4fdb-96db-13e52486efe2"
+ "76297f5d-8d46-4ba8-a3f6-d6840071e6dd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -513,19 +519,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "24369b44-5d66-41f4-804b-25a9e538956b"
+ "71ecb2a4-7048-4a00-89cb-efc58e80b647"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164729Z:24369b44-5d66-41f4-804b-25a9e538956b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001936Z:71ecb2a4-7048-4a00-89cb-efc58e80b647"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:28 GMT"
+ "Tue, 13 Jul 2021 00:19:36 GMT"
],
"Content-Length": [
- "1101"
+ "1102"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -534,17 +537,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps9711\",\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/ps861\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps9711?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM5NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "727be2f8-6013-4d39-acd1-8ced6c2b702c"
+ "c024c112-540e-4327-9d4b-33d3f8b01330"
],
"If-Match": [
"*"
@@ -553,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -569,8 +572,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "49d5face-825d-4f05-a8b7-7515bcd31e7e"
+ "62fdf8f2-80fb-4af5-98a4-7373b359d0c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -579,16 +585,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "dc34ae0a-30c6-456f-adac-d8f970ce0c0b"
+ "040f00d3-4e61-4347-ad89-0ff04b060ff2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164729Z:dc34ae0a-30c6-456f-adac-d8f970ce0c0b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001937Z:040f00d3-4e61-4347-ad89-0ff04b060ff2"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:28 GMT"
+ "Tue, 13 Jul 2021 00:19:37 GMT"
],
"Expires": [
"-1"
@@ -601,13 +604,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps861?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzODYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apiVersionSets/ps4945?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaVZlcnNpb25TZXRzL3BzNDk0NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "041541bf-e8e0-4886-9ba8-a36842d63014"
+ "5ab4006a-f304-4184-85c9-f2c55d531721"
],
"If-Match": [
"*"
@@ -616,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -632,8 +635,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ecccc1c0-3918-4ccc-9022-ac128682e1b3"
+ "29d5e838-828f-4e1b-bff8-b6d9d7aa13f3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,16 +648,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "01389231-70c9-4bd0-946e-9f88442c0f63"
+ "0f979dc0-511f-462e-8f5e-f5af3a04f1d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164729Z:01389231-70c9-4bd0-946e-9f88442c0f63"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001937Z:0f979dc0-511f-462e-8f5e-f5af3a04f1d3"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:28 GMT"
+ "Tue, 13 Jul 2021 00:19:37 GMT"
],
"Expires": [
"-1"
@@ -663,12 +666,12 @@
],
"Names": {
"": [
- "ps9711",
- "ps861",
- "ps7953",
- "ps5186",
- "ps6535",
- "ps9791"
+ "ps4334",
+ "ps4945",
+ "ps1973",
+ "ps6390",
+ "ps8685",
+ "ps4909"
]
},
"Variables": {
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 3874fcd3a460..fe7e9a56bd9a 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6102d34d-6d43-4232-a993-16868972fac8"
+ "94f784f2-1ce4-4c47-ad73-8ae10f8147fc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "83dbdf70-3ac0-42b6-aa32-8ac71e5dfa60"
+ "58031d36-b450-43a5-b51c-3d3d9f687c57"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "15456bac-2e03-4191-b669-9098b8bfe80c"
+ "2b1576c8-c74b-42a4-9270-d47c65dae028"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164040Z:15456bac-2e03-4191-b669-9098b8bfe80c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000711Z:2b1576c8-c74b-42a4-9270-d47c65dae028"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:39 GMT"
+ "Wed, 14 Jul 2021 00:07:10 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/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps1840\",\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\": \"ps6347\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\",\r\n \"Query\"\r\n ],\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\",\r\n \"displayName\": \"ps164\",\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\": \"ps8669\",\r\n \"clientSecret\": \"ps3974\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b6eefd2-c76f-49be-a6b3-a768f3acfa98"
+ "a61ee464-64ed-40c9-a483-129c7a28dbb8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "901"
+ "902"
]
},
"ResponseHeaders": {
@@ -96,13 +96,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMg=\""
+ "\"AAAAAAABAmQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fcecb029-97b4-4453-824f-818f6978fc3d"
+ "6b559e7a-1850-4d06-85a9-2c4578395516"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,19 +114,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "c2251aba-aa3b-4cfe-861f-423accb6e649"
+ "4a45c406-f542-46a6-bb1a-cf3b0ff8c99e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164041Z:c2251aba-aa3b-4cfe-861f-423accb6e649"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000712Z:4a45c406-f542-46a6-bb1a-cf3b0ff8c99e"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:40 GMT"
+ "Wed, 14 Jul 2021 00:07:11 GMT"
],
"Content-Length": [
- "1174"
+ "1175"
],
"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/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps164\",\r\n \"description\": \"ps1840\",\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\": \"ps6347\",\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\": \"ps8669\",\r\n \"clientSecret\": \"ps3974\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7556b48b-d23f-4ba9-8f79-faf4518ea2fd"
+ "fe95c4ce-94d7-483e-8a98-6d553eef00ee"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,13 +162,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMg=\""
+ "\"AAAAAAABAmQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8fc8f3ab-0af9-451a-876f-5783d282d2bf"
+ "3fc5e704-7a9d-47fe-9a0d-5767eaa094aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,19 +180,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "4628713b-f23f-44b4-adea-e0b67a442bd0"
+ "0ab800fb-eeb4-4d6c-8adf-159af5574cc7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164041Z:4628713b-f23f-44b4-adea-e0b67a442bd0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000712Z:0ab800fb-eeb4-4d6c-8adf-159af5574cc7"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:40 GMT"
+ "Wed, 14 Jul 2021 00:07:11 GMT"
],
"Content-Length": [
- "1143"
+ "1064"
],
"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/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps164\",\r\n \"description\": \"ps1840\",\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\": \"ps6347\",\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\": \"ps8669\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c762e4bc-bf3a-4f75-99d7-bf680135c67e"
+ "d135c897-7033-4c25-9de5-abb4974921c1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMk=\""
+ "\"AAAAAAABAmU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "86e346fa-8917-40dd-9105-08612a1be831"
+ "b4e7b9eb-9fbe-4dae-9e5b-5aa68fdd7027"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,19 +246,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "eab6dc79-8c72-412e-80c5-16ae5c0c9a59"
+ "99423219-b7a9-452f-96a1-2d27a11438b7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164042Z:eab6dc79-8c72-412e-80c5-16ae5c0c9a59"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000713Z:99423219-b7a9-452f-96a1-2d27a11438b7"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:41 GMT"
+ "Wed, 14 Jul 2021 00:07:12 GMT"
],
"Content-Length": [
- "1118"
+ "1038"
],
"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/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps8607\",\r\n \"description\": \"ps7702\",\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\": \"ps8424\",\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\": \"ps6588\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9b245e2-92bc-46a1-ae1a-97d4b4069398"
+ "e66bf703-7247-4414-b9b9-6898d3912c89"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,13 +294,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMk=\""
+ "\"AAAAAAABAmU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "aba6a08d-5c63-4436-a085-4443276a067c"
+ "0f1bd741-c2fe-4804-afac-6acf87745f63"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,19 +312,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "87eb9c67-7000-4801-a95a-8a01f880bef9"
+ "7d051f2b-ecab-448f-a312-36431635bdb4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164042Z:87eb9c67-7000-4801-a95a-8a01f880bef9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000713Z:7d051f2b-ecab-448f-a312-36431635bdb4"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:41 GMT"
+ "Wed, 14 Jul 2021 00:07:12 GMT"
],
"Content-Length": [
- "1118"
+ "1038"
],
"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/ps6087\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"ps6087\",\r\n \"properties\": {\r\n \"displayName\": \"ps8607\",\r\n \"description\": \"ps7702\",\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\": \"ps8424\",\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\": \"ps6588\",\r\n \"resourceOwnerUsername\": \"ps3959\",\r\n \"resourceOwnerPassword\": \"ps4974\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39f7c0b4-e03f-43d3-b208-3d1be41b3493"
+ "a3402561-6f11-4e07-9248-e8d889facc90"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -362,8 +362,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "eb5a6763-1359-4084-92d1-b4aa84df65b7"
+ "e7a441a4-badc-4141-a62d-2e188b1f6dfa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +375,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "adf2ad57-6107-468a-9c46-7a1c18ce953c"
+ "238bd3a5-093c-422f-bb95-3669c8a0f615"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164043Z:adf2ad57-6107-468a-9c46-7a1c18ce953c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000713Z:238bd3a5-093c-422f-bb95-3669c8a0f615"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:42 GMT"
+ "Wed, 14 Jul 2021 00:07:13 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/ps6087/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54044e9c-d926-4007-ade1-abfaa02f4744"
+ "e45d311b-4d0a-4795-9e3b-f558f2c005bf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,13 +423,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMg=\""
+ "\"AAAAAAABAmQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f9babbaa-30c8-480a-aaa8-0f85a62a0e24"
+ "5a3b10c0-4d13-4c15-907d-9bb3f1e2a0d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,19 +441,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "5202aaf8-2055-4e31-9e86-5b45a4f5f11c"
+ "c9a1117a-0917-4677-a7ff-2c13a59d759d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164041Z:5202aaf8-2055-4e31-9e86-5b45a4f5f11c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000712Z:c9a1117a-0917-4677-a7ff-2c13a59d759d"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:40 GMT"
+ "Wed, 14 Jul 2021 00:07:11 GMT"
],
"Content-Length": [
- "25"
+ "91"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps3974\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps8283\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Ny9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNi9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2796884b-4365-4d88-8258-57558f736e82"
+ "19b43e93-ea72-49bb-b8f6-62b19adfa338"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,13 +489,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMk=\""
+ "\"AAAAAAABAmU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3d09201d-f6ef-47b5-8018-f18fde222cca"
+ "2e1cd02a-1476-4beb-aa7e-621a5e0c19ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,19 +507,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "05529e2b-85de-488f-9a87-be74b50ef968"
+ "c2e27a56-6b74-4b48-beaa-cb7de8e8052d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164042Z:05529e2b-85de-488f-9a87-be74b50ef968"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000713Z:c2e27a56-6b74-4b48-beaa-cb7de8e8052d"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:41 GMT"
+ "Wed, 14 Jul 2021 00:07:12 GMT"
],
"Content-Length": [
- "25"
+ "91"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,17 +525,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps7982\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps1013\",\r\n \"resourceOwnerUsername\": \"ps7695\",\r\n \"resourceOwnerPassword\": \"ps7119\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7702\",\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\": \"ps8424\",\r\n \"bearerTokenSendingMethods\": [\r\n \"AuthorizationHeader\"\r\n ],\r\n \"displayName\": \"ps8607\",\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\": \"ps6588\",\r\n \"clientSecret\": \"ps7982\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2bc731a5-594b-4d91-ac13-cb587dd2bc12"
+ "d135c897-7033-4c25-9de5-abb4974921c1"
],
"If-Match": [
"*"
@@ -544,10 +544,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -563,11 +563,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAmU=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b11c539b-a6dc-4aa4-9fa9-abf722252dd0"
+ "5a24984a-3f87-48bc-a6ed-e67cfe506d4e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,32 +582,35 @@
"1198"
],
"x-ms-correlation-request-id": [
- "288e470d-c754-4738-9c13-2ac485cf972d"
+ "3ff40f0e-4676-48e8-baaa-25cda86e68ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164042Z:288e470d-c754-4738-9c13-2ac485cf972d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000713Z:3ff40f0e-4676-48e8-baaa-25cda86e68ce"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:41 GMT"
+ "Wed, 14 Jul 2021 00:07:12 GMT"
+ ],
+ "Content-Length": [
+ "1149"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps6087?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzNjA4Nz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/authorizationServers/ps9706?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2F1dGhvcml6YXRpb25TZXJ2ZXJzL3BzOTcwNj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3880a82a-3fff-4672-9446-f7315e708099"
+ "a26da834-74fb-4e05-96e5-d1d40ec4c5c9"
],
"If-Match": [
"*"
@@ -610,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -626,8 +635,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c78d2b1e-bcf8-4566-9a3a-7591a31670fd"
+ "524b791a-012f-47e4-b506-ef3d16cf7d82"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -636,16 +648,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "f78dd0e3-dacf-4329-a8a5-d57602ddcf3f"
+ "c96701c4-76b7-42e4-b368-efc12c88ec68"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164042Z:f78dd0e3-dacf-4329-a8a5-d57602ddcf3f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210714T000713Z:c96701c4-76b7-42e4-b368-efc12c88ec68"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:42 GMT"
+ "Wed, 14 Jul 2021 00:07:12 GMT"
],
"Expires": [
"-1"
@@ -660,19 +669,19 @@
],
"Names": {
"": [
- "ps6087",
- "ps164",
- "ps6347",
- "ps8669",
- "ps1840",
- "ps3974",
- "ps4974",
- "ps3959",
- "ps8607",
- "ps8424",
- "ps6588",
- "ps7702",
- "ps7982"
+ "ps9706",
+ "ps1039",
+ "ps6844",
+ "ps7996",
+ "ps5403",
+ "ps8283",
+ "ps7119",
+ "ps7695",
+ "ps9198",
+ "ps9827",
+ "ps5477",
+ "ps8500",
+ "ps1013"
]
},
"Variables": {
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 f7ec11a51307..0f476449f4d2 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/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps5083\",\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\": \"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "248d0814-8026-4fe8-a6d4-7b9c215d4b01"
+ "ebc07f0b-b4a8-4b00-aa6c-d412c431c46a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,34 +33,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPSI=\""
+ "\"AAAAAAABAFw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "db46d580-8c01-45c7-9095-b903dcb2d9cf"
+ "b48f99cb-e407-47a5-ae80-b2755468f377"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1195"
],
"x-ms-correlation-request-id": [
- "4be5c7dd-0752-40f0-9769-e10c059ad3c0"
+ "1639c68f-4eb1-4a1c-9e1a-86a2ac60e235"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164133Z:4be5c7dd-0752-40f0-9769-e10c059ad3c0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001334Z:1639c68f-4eb1-4a1c-9e1a-86a2ac60e235"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:33 GMT"
+ "Tue, 13 Jul 2021 00:13:33 GMT"
],
"Content-Length": [
- "824"
+ "822"
],
"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/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps5083\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7950\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7167\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74200fab-8541-45ba-a477-f05128437f58"
+ "2947d8c1-6649-4896-b70d-27f1b3635daa"
],
"If-Match": [
"*"
@@ -88,10 +88,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -107,45 +107,54 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAF8=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b61bf370-0e9f-4987-a85b-21dcdbede47c"
+ "e17065c1-5969-495e-bfa1-52c7970e7fa2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1194"
],
"x-ms-correlation-request-id": [
- "1e4c4a72-8471-4f39-ab24-0a309d12892e"
+ "611b3857-c8f2-4f6e-ad52-353cd0445d7f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164134Z:1e4c4a72-8471-4f39-ab24-0a309d12892e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001335Z:611b3857-c8f2-4f6e-ad52-353cd0445d7f"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:34 GMT"
+ "Tue, 13 Jul 2021 00:13:34 GMT"
+ ],
+ "Content-Length": [
+ "822"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "82d238cc-9959-4b90-807a-c93cdfbb9ad4"
+ "36609b2b-4b49-4121-b2de-65c5ae51d320"
],
"If-Match": [
"*"
@@ -154,10 +163,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -173,54 +182,63 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAGM=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f793d881-033e-49bd-a824-ff1b6ba09c9e"
+ "52c4df55-23fa-4bd8-adf8-58679d83220a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1193"
],
"x-ms-correlation-request-id": [
- "622ac608-29b9-4e93-83c5-1145e2e0d919"
+ "9d3bd44d-50ee-4607-a203-db9ba6d5a055"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164136Z:622ac608-29b9-4e93-83c5-1145e2e0d919"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001336Z:9d3bd44d-50ee-4607-a203-db9ba6d5a055"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:36 GMT"
+ "Tue, 13 Jul 2021 00:13:36 GMT"
+ ],
+ "Content-Length": [
+ "951"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3445238-63da-4e1d-bf35-b84ed8dab7af"
+ "2947d8c1-6649-4896-b70d-27f1b3635daa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,34 +249,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPSQ=\""
+ "\"AAAAAAABAF8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d1e5aed2-0d51-4b8c-b4bc-0979cd6b5ab4"
+ "eaec136d-e218-4663-8f12-b256d3353618"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11991"
],
"x-ms-correlation-request-id": [
- "9a17b563-91c1-4d4d-8aec-7c569afce0f9"
+ "b990dcf3-cbf0-4f8b-a8e3-5feefa6f8dc4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164134Z:9a17b563-91c1-4d4d-8aec-7c569afce0f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001335Z:b990dcf3-cbf0-4f8b-a8e3-5feefa6f8dc4"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:34 GMT"
+ "Tue, 13 Jul 2021 00:13:34 GMT"
],
"Content-Length": [
- "824"
+ "822"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -267,26 +285,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34eaac91-1a1c-42fb-8689-ff403fdd68ea"
+ "828e7d3e-9237-454d-80b0-7d2f539bc7a2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,34 +315,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPSQ=\""
+ "\"AAAAAAABAF8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8492baff-167a-4869-b6bd-fb19f0080ebe"
+ "4e90b082-fd04-4843-9f39-8fa24556e142"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11989"
],
"x-ms-correlation-request-id": [
- "17f6bced-c6df-4dc9-ac6b-2944d5e1acbb"
+ "cd824cfe-5149-4d6f-a76c-78414dabc23e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164135Z:17f6bced-c6df-4dc9-ac6b-2944d5e1acbb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001336Z:cd824cfe-5149-4d6f-a76c-78414dabc23e"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:35 GMT"
+ "Tue, 13 Jul 2021 00:13:36 GMT"
],
"Content-Length": [
- "824"
+ "822"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -333,26 +351,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "399f174a-e66c-4924-a9bd-15269c31b54c"
+ "36609b2b-4b49-4121-b2de-65c5ae51d320"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -363,34 +381,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPSc=\""
+ "\"AAAAAAABAGM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b09e55d6-9d8a-4f5d-9b51-8e0d3a35770d"
+ "22b3493a-f0f9-4583-aeef-9d60d3db1229"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11988"
],
"x-ms-correlation-request-id": [
- "18468b8e-0e1e-4710-924f-b7f1645786eb"
+ "33e5990b-ba18-4429-9143-8d84174ba9d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164136Z:18468b8e-0e1e-4710-924f-b7f1645786eb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001336Z:33e5990b-ba18-4429-9143-8d84174ba9d1"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:36 GMT"
+ "Tue, 13 Jul 2021 00:13:36 GMT"
],
"Content-Length": [
- "953"
+ "951"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -399,26 +417,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e43de81-3258-4c7d-b5f3-d8f6df652375"
+ "ac804e18-a352-40f4-a20d-d94a10170b3f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -431,26 +449,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d8406982-ad08-4c8a-ab44-a08f6d333f58"
+ "ef1de333-34fe-427c-897d-e551121ed756"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11987"
],
"x-ms-correlation-request-id": [
- "a1ad993d-229d-4fe2-96a7-824c891589f9"
+ "b0c99489-7739-4832-82d9-a126dac5c531"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164136Z:a1ad993d-229d-4fe2-96a7-824c891589f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001337Z:b0c99489-7739-4832-82d9-a126dac5c531"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:36 GMT"
+ "Tue, 13 Jul 2021 00:13:37 GMT"
],
"Content-Length": [
"83"
@@ -466,22 +484,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1953e438-1647-4443-9218-e21a2d2f8288"
+ "4c1a36ec-0cc0-41cc-a824-1a3ab9a75024"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -494,29 +512,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "35848623-7af2-4577-bab0-320b5d688957"
+ "52364f3a-d27a-4eea-ac1d-b80410fafd99"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-correlation-request-id": [
- "83ed4586-19ef-4098-8fef-0008d27bd5eb"
+ "dba3597c-2552-4116-9433-daef7def71c8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164135Z:83ed4586-19ef-4098-8fef-0008d27bd5eb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001336Z:dba3597c-2552-4116-9433-daef7def71c8"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:35 GMT"
+ "Tue, 13 Jul 2021 00:13:36 GMT"
],
"Content-Length": [
- "1004"
+ "1002"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -525,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/ps3138\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps3138\",\r\n \"properties\": {\r\n \"title\": \"ps9538\",\r\n \"description\": \"ps7950\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps3138?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMzEzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps823?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzODIzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1db40c1c-9fed-4c59-bc54-02407527e960"
+ "645448c4-c36b-4efd-a01b-e75f7d521fbf"
],
"If-Match": [
"*"
@@ -544,10 +562,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -560,26 +578,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d1cb456c-1084-4be4-9fb3-7d6e301c4edd"
+ "5478bd13-3fa9-41ce-b3ca-3538d20bd0b4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14995"
],
"x-ms-correlation-request-id": [
- "44073233-5657-4612-a699-da72c7db2636"
+ "2ca9b9d9-c566-4bd7-8668-cbcf17415bd4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164136Z:44073233-5657-4612-a699-da72c7db2636"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001337Z:2ca9b9d9-c566-4bd7-8668-cbcf17415bd4"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:36 GMT"
+ "Tue, 13 Jul 2021 00:13:37 GMT"
],
"Expires": [
"-1"
@@ -594,10 +612,10 @@
],
"Names": {
"": [
- "ps3138",
- "ps9538",
- "ps5083",
- "ps7950"
+ "ps823",
+ "ps7670",
+ "ps9399",
+ "ps7167"
]
},
"Variables": {
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 0971f43248c1..d51e2db2c46f 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ef8430b-86e8-4ed7-adfb-f91df70137aa"
+ "612e2f3f-282a-44db-9e67-0be81696ca39"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3900b5a9-e65e-49af-8cc0-0870d0028e24"
+ "bed14349-9d69-42b9-86be-e3cb51115ea1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11996"
],
"x-ms-correlation-request-id": [
- "c1ebc8c0-3100-4eae-abe2-a3d6ca9c09ed"
+ "a0bc7ff6-6290-4dd4-a91a-083242195c89"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164416Z:c1ebc8c0-3100-4eae-abe2-a3d6ca9c09ed"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001635Z:a0bc7ff6-6290-4dd4-a91a-083242195c89"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:15 GMT"
+ "Tue, 13 Jul 2021 00:16:35 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ba56717-96b0-4248-b023-9f2b81d120b1"
+ "23d2fb18-ebed-4c50-87d7-3354edec67b4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -92,29 +92,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8bafee28-4164-498f-924d-50de5dd022a6"
+ "165fc5eb-1683-4764-a45a-e3a5d4f0ded7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11993"
],
"x-ms-correlation-request-id": [
- "6af70c5b-0033-4e62-ab4d-70263767d27c"
+ "aaaaa592-1132-4e74-80b8-0ca5c8238356"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164419Z:6af70c5b-0033-4e62-ab4d-70263767d27c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001637Z:aaaaa592-1132-4e74-80b8-0ca5c8238356"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:18 GMT"
+ "Tue, 13 Jul 2021 00:16:37 GMT"
],
"Content-Length": [
- "1122"
+ "1326"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,27 +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/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\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 }\r\n }\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"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": [
- "490fcba1-7b50-4cb6-bba8-4260f240df43"
+ "13771767-1e7e-4cbc-909f-d79198f3ad60"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -160,13 +159,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPcI=\""
+ "\"AAAAAAABARw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d66e5518-f89e-4241-94de-0741849abe8c"
+ "6f3e443f-4ad2-44fd-ac7a-f18caf4f9a70"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -175,19 +177,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "8b4b3d49-8fbc-485e-be10-08086f068747"
+ "e79a071b-a59b-4b9f-96d4-5aca6e561e8f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164416Z:8b4b3d49-8fbc-485e-be10-08086f068747"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001635Z:e79a071b-a59b-4b9f-96d4-5aca6e561e8f"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:15 GMT"
+ "Tue, 13 Jul 2021 00:16:35 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -196,26 +195,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8062\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d03b8efe-4267-4d3c-82d5-33a21e52be0a"
+ "13771767-1e7e-4cbc-909f-d79198f3ad60"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -226,34 +225,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPcI=\""
+ "\"AAAAAAABARw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d62e3ef4-cf57-405a-ab1e-1515fb2baac0"
+ "39483f9a-97e8-4bd7-8634-9c9cb11382fb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11995"
],
"x-ms-correlation-request-id": [
- "58964ed4-45f2-44f6-a287-aa8737f10bda"
+ "6204ae86-c785-4ae6-8357-670e4e9da9d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164417Z:58964ed4-45f2-44f6-a287-aa8737f10bda"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001635Z:6204ae86-c785-4ae6-8357-670e4e9da9d8"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:16 GMT"
+ "Tue, 13 Jul 2021 00:16:35 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -262,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps8062\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a73fdfc-06cf-44da-8000-e613f4aecf12"
+ "f1421bd4-b7c6-4158-8e59-e00e33426e10"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,26 +293,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ca3bf6f1-d75d-4406-8584-f41041d96387"
+ "d7f8fff0-fdfb-4d57-b748-c06223d2ec8d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11990"
],
"x-ms-correlation-request-id": [
- "1da66f4d-06cf-4d5f-bd41-2fa194f64c3f"
+ "303453fe-55f3-4fdd-b445-e81be0d86274"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164420Z:1da66f4d-06cf-4d5f-bd41-2fa194f64c3f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001638Z:303453fe-55f3-4fdd-b445-e81be0d86274"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:19 GMT"
+ "Tue, 13 Jul 2021 00:16:38 GMT"
],
"Content-Length": [
"87"
@@ -329,22 +328,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps8854\",\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\": \"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad24e14a-2d40-4f5b-892f-b68b74de70c0"
+ "5f5d9bd6-87b0-4858-b7d2-92adab088810"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -361,13 +360,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPcU=\""
+ "\"AAAAAAABASA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "40f754fc-439f-4f4c-925d-a9bc7241640c"
+ "62d898db-3494-48c3-aa44-682ed07ff12b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -376,19 +378,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "8900320b-f905-4630-b598-9316a4d460d1"
+ "9dd01419-34a4-432c-bf5b-f2f8a6d65875"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164418Z:8900320b-f905-4630-b598-9316a4d460d1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001636Z:9dd01419-34a4-432c-bf5b-f2f8a6d65875"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:17 GMT"
+ "Tue, 13 Jul 2021 00:16:36 GMT"
],
"Content-Length": [
- "970"
+ "1170"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -397,17 +396,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps8854\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\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 }\r\n }\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9623\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps6460\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8eb8b252-d86c-4aa0-9cf1-26e57d4f05b2"
+ "8c4546ec-b6f0-45ad-ba82-1ae0b40bd954"
],
"If-Match": [
"*"
@@ -416,10 +415,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -435,11 +434,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABASM=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e7526062-ec95-4d08-834e-513b29bacb8e"
+ "d8d1bb8a-e483-4d10-b803-fef900283f13"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -448,41 +453,44 @@
"1197"
],
"x-ms-correlation-request-id": [
- "69bf85e7-ca25-4011-8cff-5ef094cedbf1"
+ "ba2b2cd2-644f-44d6-9eeb-affb2f325e8d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164418Z:69bf85e7-ca25-4011-8cff-5ef094cedbf1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001637Z:ba2b2cd2-644f-44d6-9eeb-affb2f325e8d"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:17 GMT"
+ "Tue, 13 Jul 2021 00:16:36 GMT"
+ ],
+ "Content-Length": [
+ "1170"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e25a7d0-93d8-4471-9767-5c8ac072beef"
+ "8c4546ec-b6f0-45ad-ba82-1ae0b40bd954"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -493,34 +501,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPcc=\""
+ "\"AAAAAAABASM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a94a6075-ce88-471d-9a70-ece18511fff6"
+ "69b4bffa-7bea-4b23-a5d7-779aea6d5911"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11994"
],
"x-ms-correlation-request-id": [
- "454d5cd6-bd7f-43a3-9e59-632070be234b"
+ "686967f0-a93c-4c3a-957e-236fe524e6aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164418Z:454d5cd6-bd7f-43a3-9e59-632070be234b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001637Z:686967f0-a93c-4c3a-957e-236fe524e6aa"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:18 GMT"
+ "Tue, 13 Jul 2021 00:16:37 GMT"
],
"Content-Length": [
- "970"
+ "1170"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -529,26 +537,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\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 }\r\n }\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "daf5efde-c667-494b-8874-aae412077ef9"
+ "ca4c068f-1cb8-4fb4-ba9e-ff0705a3cc7f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -559,34 +567,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPcc=\""
+ "\"AAAAAAABASM=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fc553e34-2a4d-4d16-90ca-7076b28815cd"
+ "df3f0c07-cf44-4f9e-a2f3-c7c2130b35e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11992"
],
"x-ms-correlation-request-id": [
- "2c25b3f7-e17a-4340-a471-3b112a381d18"
+ "8554f986-9643-4545-b20a-85ff43ccc60a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164419Z:2c25b3f7-e17a-4340-a471-3b112a381d18"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001637Z:8554f986-9643-4545-b20a-85ff43ccc60a"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:18 GMT"
+ "Tue, 13 Jul 2021 00:16:37 GMT"
],
"Content-Length": [
- "970"
+ "1170"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -595,26 +603,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"ps2285\",\r\n \"properties\": {\r\n \"title\": \"ps7257\",\r\n \"description\": \"ps9623\",\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 \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\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 }\r\n }\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16232167-f770-4308-a482-23ffe29acfe8"
+ "7126dcfe-6d63-4084-a649-a6948bc21029"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -627,26 +635,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "528f4ab7-3dda-4330-a33d-4cdc49749b6f"
+ "c6adfc8d-a090-4bd2-91bd-8071a1d4f7c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11991"
],
"x-ms-correlation-request-id": [
- "138253c6-c066-4f3b-aea3-255f161c5cba"
+ "ff059909-421d-4c7a-ad70-0fd134042ecc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164419Z:138253c6-c066-4f3b-aea3-255f161c5cba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001638Z:ff059909-421d-4c7a-ad70-0fd134042ecc"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:19 GMT"
+ "Tue, 13 Jul 2021 00:16:38 GMT"
],
"Content-Length": [
"83"
@@ -662,13 +670,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps2285?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzMjI4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/backends/ps9632?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2JhY2tlbmRzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b92c13d3-9b0d-4ec6-9fc0-7f9c8d286504"
+ "8fe000a9-d4e0-4bcf-8837-bf47a4f85861"
],
"If-Match": [
"*"
@@ -677,10 +685,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -693,26 +701,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "27aa40dc-e2f5-4000-b218-dcfbbe7495da"
+ "827aff39-d11d-4ea2-a9fb-5235fca6cee1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "3330879d-0b9d-41d3-b482-4b1ce9abf7b3"
+ "ff0f2b4d-f061-48f5-b2d9-1839a59fd362"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164419Z:3330879d-0b9d-41d3-b482-4b1ce9abf7b3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001638Z:ff0f2b4d-f061-48f5-b2d9-1839a59fd362"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:18 GMT"
+ "Tue, 13 Jul 2021 00:16:38 GMT"
],
"Expires": [
"-1"
@@ -725,13 +733,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8062?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgwNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps8107?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczgxMDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4043a6c0-46ee-48fe-914b-112f7e451a32"
+ "9e0d3207-a3f3-4c46-85cd-bbaf246846de"
],
"If-Match": [
"*"
@@ -740,10 +748,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,26 +764,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "70c75e60-f0db-464b-b51e-b67644c43f2e"
+ "a64f911b-3424-4978-8982-7ff3a4967106"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "30c25073-5721-42f1-8565-634778245dd0"
+ "55cb721c-cbf6-446d-876b-7e8166128288"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164420Z:30c25073-5721-42f1-8565-634778245dd0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001638Z:55cb721c-cbf6-446d-876b-7e8166128288"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:19 GMT"
+ "Tue, 13 Jul 2021 00:16:38 GMT"
],
"Expires": [
"-1"
@@ -790,11 +798,11 @@
],
"Names": {
"": [
- "ps8062",
- "ps2285",
- "ps7257",
- "ps8854",
- "ps9623"
+ "ps8107",
+ "ps9632",
+ "ps7669",
+ "ps2237",
+ "ps6460"
]
},
"Variables": {
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 51052c6574d8..fd3fff92a2e3 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2da7ef94-5387-4f13-8afa-9acfe724bc3a"
+ "77b51043-7d4f-48f0-b245-22947366a1d1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1cd6c95b-bd82-4775-a689-bf6146f9ac75"
+ "2f27289d-6a78-43ab-8513-cdcd8b5c737a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "746f0ac8-607c-4cc4-8e27-d6ee7400ddcc"
+ "dcf80df2-c8ec-4403-b562-af6612a36bb2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163905Z:746f0ac8-607c-4cc4-8e27-d6ee7400ddcc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213225Z:dcf80df2-c8ec-4403-b562-af6612a36bb2"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:04 GMT"
+ "Thu, 15 Jul 2021 21:32:25 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96b77fc2-a748-4b78-a223-a9bf268dcc77"
+ "0033344d-8390-4af4-8d44-a6aeaa4a0e1c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -92,8 +92,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f2327643-580e-45f6-9a8a-834de0f9eaa1"
+ "c80442be-740f-4faa-b7ee-6a958860509b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -102,19 +105,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "070832fc-15e2-4fce-a0d2-d5db064bd444"
+ "9b8346e1-aa2d-491d-bc67-e5f795d3ac44"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163907Z:070832fc-15e2-4fce-a0d2-d5db064bd444"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213227Z:9b8346e1-aa2d-491d-bc67-e5f795d3ac44"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:07 GMT"
+ "Thu, 15 Jul 2021 21:32:27 GMT"
],
"Content-Length": [
- "437"
+ "476"
],
"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/caches/default\",\r\n \"type\": \"Microsoft.ApiManagement/service/caches\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps2632\",\r\n \"connectionString\": \"teamdemo.redis.cache.windows.net:6380,password=xxxxxx+xxxxx=,ssl=True,abortConnect=False\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "257dffe0-70b4-4fcb-8884-fbf4ae2ed416"
+ "db9c77ab-c19a-4363-99f0-604afab790f9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "174"
+ "209"
]
},
"ResponseHeaders": {
@@ -159,34 +159,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPFE=\""
+ "\"AAAAAAABAsA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "16504cc4-0bdb-4408-b844-2c182a245e56"
+ "574d5e23-e07c-45ee-9385-423416740bc6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "855575df-2b60-41c7-ac6d-ec3a6ecd3b70"
+ "ef31cae5-9edf-45cd-a3ee-24b87e8cc645"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163905Z:855575df-2b60-41c7-ac6d-ec3a6ecd3b70"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213226Z:ef31cae5-9edf-45cd-a3ee-24b87e8cc645"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:05 GMT"
+ "Thu, 15 Jul 2021 21:32:26 GMT"
],
"Content-Length": [
- "361"
+ "396"
],
"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 \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75dce3b4-6a4f-43b7-9b5d-159f86e2a142"
+ "422e0b22-7f65-4da8-a032-bd2fb792bedb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,13 +225,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPFE=\""
+ "\"AAAAAAABAsA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2877d4b6-be11-4eca-b5dc-4b30e4d4fccd"
+ "159ad87a-4264-46f5-ba4a-583bd5bc10c1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -240,19 +243,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "ee6e072f-b769-4427-9c8c-e264a690337b"
+ "d6c3a5e0-2f08-477c-ae06-a62a3c1b68a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163906Z:ee6e072f-b769-4427-9c8c-e264a690337b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213226Z:d6c3a5e0-2f08-477c-ae06-a62a3c1b68a3"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:05 GMT"
+ "Thu, 15 Jul 2021 21:32:26 GMT"
],
"Content-Length": [
- "361"
+ "396"
],
"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 \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bff9140e-f361-4c12-8584-24d93538a9d0"
+ "4127f2a3-3e55-433a-8bab-399f228726e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,13 +291,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPFE=\""
+ "\"AAAAAAABAsA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6720d2a1-94d7-4d20-97df-57675fbb610c"
+ "f2529738-9f37-4702-ad11-9f53d9226792"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,19 +309,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "a76720ac-7958-492b-84c9-210dd5a75307"
+ "66f657e9-3602-4630-bb58-93ce3c86534b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163906Z:a76720ac-7958-492b-84c9-210dd5a75307"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213226Z:66f657e9-3602-4630-bb58-93ce3c86534b"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:05 GMT"
+ "Thu, 15 Jul 2021 21:32:26 GMT"
],
"Content-Length": [
- "361"
+ "396"
],
"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 \"description\": \"ps2632\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64e2b8fb-4787-40ca-8e4a-990ac5323b20"
+ "bdc3eeb3-1a99-405c-a7df-67eaf92bc095"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPFQ=\""
+ "\"AAAAAAABAsQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e8bdf8ba-53f5-44c9-8c2b-f7d8aba93366"
+ "7ade4642-d9b8-4ca9-85d7-8cdbafab895d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,19 +375,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "667ef46d-91e1-4991-a9cf-fcc77d9918ba"
+ "915a0613-be78-48e3-8478-0a212542ab65"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163907Z:667ef46d-91e1-4991-a9cf-fcc77d9918ba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213227Z:915a0613-be78-48e3-8478-0a212542ab65"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:06 GMT"
+ "Thu, 15 Jul 2021 21:32:27 GMT"
],
"Content-Length": [
- "361"
+ "396"
],
"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 \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "189b74fc-6774-4535-b14e-f5b694dea036"
+ "4dfc3ae3-5e19-453a-bb0e-9029c4fa49f7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -425,8 +425,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "efebb1ab-149e-4a84-a1c9-e0a5791efa82"
+ "574fc167-a882-44b5-9e00-dcdd51285ddf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +438,13 @@
"11994"
],
"x-ms-correlation-request-id": [
- "673403ca-2e7e-4ad7-b309-76e89f4e5fda"
+ "2d868a91-c999-4612-b17c-83a532f796e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163908Z:673403ca-2e7e-4ad7-b309-76e89f4e5fda"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213227Z:2d868a91-c999-4612-b17c-83a532f796e7"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:07 GMT"
+ "Thu, 15 Jul 2021 21:32:27 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps7562\",\r\n \"connectionString\": \"{{5f171a29a2ca600fe4c296a8}}\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4058\",\r\n \"connectionString\": \"{{60f0a96aa2ca601290f0cc5f}}\",\r\n \"useFromLocation\": \"default\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad61bd71-a39a-45cf-b0de-a4c19c9df5ca"
+ "bdc3eeb3-1a99-405c-a7df-67eaf92bc095"
],
"If-Match": [
"*"
@@ -475,16 +475,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "114"
+ "149"
]
},
"ResponseHeaders": {
@@ -494,45 +494,54 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAsQ=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f52aa3f4-ba14-4edc-b71d-c90a0e4260c6"
+ "c857fa6d-dac2-47e6-a680-fdef3653760d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "ed2676ec-2f81-4a16-8a16-8b222a2b98bd"
+ "afaf7a17-6fea-4086-8dc2-1ce22ff74041"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163907Z:ed2676ec-2f81-4a16-8a16-8b222a2b98bd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213226Z:afaf7a17-6fea-4086-8dc2-1ce22ff74041"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:06 GMT"
+ "Thu, 15 Jul 2021 21:32:26 GMT"
+ ],
+ "Content-Length": [
+ "396"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/caches/default?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NhY2hlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed7185b3-dcee-47d0-bc5e-7a2a95f933ab"
+ "6ecfcb64-c202-42d3-818e-2f5bd22b0db0"
],
"If-Match": [
"*"
@@ -541,10 +550,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -557,8 +566,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9c8a97a8-ff09-4b18-9e6a-501547cfafde"
+ "408ddc8e-0535-4112-a4b3-3b6fe7eef0dc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -567,16 +579,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "9dc28fbd-6dc8-4921-8126-5bd259372e32"
+ "7d61a6a5-27fe-4291-9f12-b690f7e19764"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163907Z:9dc28fbd-6dc8-4921-8126-5bd259372e32"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213227Z:7d61a6a5-27fe-4291-9f12-b690f7e19764"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:07 GMT"
+ "Thu, 15 Jul 2021 21:32:27 GMT"
],
"Expires": [
"-1"
@@ -589,22 +598,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0cc178c0-44eb-422b-a25b-6bd0e2e5cc69"
+ "c8ad0136-d128-4b98-851b-186194b97275"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -617,8 +626,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7fdb4d4a-05ce-4be0-ba01-7c0bd63d2f46"
+ "063f9a3f-265d-43ad-8005-a6dc6b2fc3ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -627,16 +639,13 @@
"11993"
],
"x-ms-correlation-request-id": [
- "b1c6ca25-14e4-44f6-a186-f19ab4fb0c4c"
+ "3d750f37-9310-4e5f-9cb0-c945cfa912a9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163908Z:b1c6ca25-14e4-44f6-a186-f19ab4fb0c4c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213227Z:3d750f37-9310-4e5f-9cb0-c945cfa912a9"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:07 GMT"
+ "Thu, 15 Jul 2021 21:32:27 GMT"
],
"Content-Length": [
"511"
@@ -648,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/5f171a29a2ca600fe4c296a8\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171a29a2ca600fe4c296a8\",\r\n \"properties\": {\r\n \"displayName\": \"cache-default-connection-5f171a29a2ca600fe4c296a9\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a29a2ca600fe4c296a8?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYTI5YTJjYTYwMGZlNGMyOTZhOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/60f0a96aa2ca601290f0cc5f?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzYwZjBhOTZhYTJjYTYwMTI5MGYwY2M1Zj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "051c0777-38ee-49b4-921f-c6948f2913d1"
+ "a2e2170d-b05f-4a6c-a89b-94495f0bc4de"
],
"If-Match": [
"*"
@@ -667,10 +676,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -683,8 +692,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "438ced38-d3e5-40ee-be9a-3527308aac4f"
+ "8a5d1595-0835-4b95-9012-58c390fa66fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -693,16 +705,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "5743500c-0c56-4e94-8e2e-f4bf7a1ab16d"
+ "beba4596-eb94-4fb7-b5e4-7f2d68de7464"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163908Z:5743500c-0c56-4e94-8e2e-f4bf7a1ab16d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T213228Z:beba4596-eb94-4fb7-b5e4-7f2d68de7464"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:08 GMT"
+ "Thu, 15 Jul 2021 21:32:27 GMT"
],
"Expires": [
"-1"
@@ -717,8 +726,8 @@
],
"Names": {
"": [
- "ps2632",
- "ps7562"
+ "ps8504",
+ "ps4058"
]
},
"Variables": {
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 85607d150498..62c63825c55f 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ad9236e-a6fb-475d-bbe1-c5a5fe978a95"
+ "b51c01e0-8a9c-4e35-85e2-f0d31061073f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3d53de7a-0b10-41dd-a2f8-fbc9fa1ee5cd"
+ "9de07bcc-4c79-4b8d-80ec-7d483a5c377b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,19 +42,79 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7b7b0e0f-b0af-4b09-9a71-e29cb5db37f3"
+ "6e248edb-9600-481a-aa42-f89d3ee08d01"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164139Z:7b7b0e0f-b0af-4b09-9a71-e29cb5db37f3"
+ "WESTUS:20210728T183514Z:6e248edb-9600-481a-aa42-f89d3ee08d01"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:14 GMT"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9519c7c7-6ea4-439c-85da-a7fef6d12ac0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "25fb10e9-9fdd-4dc8-ad20-b5bef9907650"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "433e44a2-893b-46df-a005-df07dab00331"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183518Z:433e44a2-893b-46df-a005-df07dab00331"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:41:39 GMT"
+ "Wed, 28 Jul 2021 18:35:18 GMT"
],
"Content-Length": [
- "34"
+ "1350"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -60,26 +123,98 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "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"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "142"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAACiI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8d467489-a53b-4f42-bcac-58bb6945f40d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "224b91a8-01d6-4e64-8f17-a4693ad9d146"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183515Z:224b91a8-01d6-4e64-8f17-a4693ad9d146"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:15 GMT"
+ ],
+ "Content-Length": [
+ "726"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b445d75d-46fb-4e94-b6be-37f0fd3de65f"
+ "2c85f219-00dc-4acf-88c1-891ad818436d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -89,32 +224,101 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAACiI=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e2a65da3-ed1c-4a4e-a7f2-b0880164f616"
+ "11ca7d1e-c172-445f-8259-0eea7e8272c9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11998"
],
"x-ms-correlation-request-id": [
- "1c014b8b-6757-4df1-8051-fd6b34b84c51"
+ "b93ff64f-05f3-44fd-8037-033d953fb17d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164142Z:1c014b8b-6757-4df1-8051-fd6b34b84c51"
+ "WESTUS:20210728T183515Z:b93ff64f-05f3-44fd-8037-033d953fb17d"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:15 GMT"
+ ],
+ "Content-Length": [
+ "726"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "57cf7d89-40b6-482d-9328-77ebc4f9547f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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"
+ ],
+ "ETag": [
+ "\"AAAAAAAACiI=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "582b564b-cc45-4025-85c0-594f6f77639b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "193315ce-2c68-4b5f-9c95-1fd92de4b684"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183515Z:193315ce-2c68-4b5f-9c95-1fd92de4b684"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:41:42 GMT"
+ "Wed, 28 Jul 2021 18:35:15 GMT"
],
"Content-Length": [
- "513"
+ "726"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,33 +327,155 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
- "RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
- "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}",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/cert1234?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9jZXJ0MTIzND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14fe5e66-e7da-4587-acd2-83b83ace16a5"
+ "57cf7d89-40b6-482d-9328-77ebc4f9547f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAACiU=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "7f12495a-ed63-4a21-a17b-cf397c4107ae"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd635754-97fa-4166-9c43-040b21dcb545"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183516Z:dd635754-97fa-4166-9c43-040b21dcb545"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:16 GMT"
+ ],
+ "Content-Length": [
+ "726"
],
"Content-Type": [
"application/json; charset=utf-8"
],
+ "Expires": [
+ "-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}",
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c8330a4a-992b-4a2d-a130-77820404002a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "07c1eef5-4559-4e46-b837-949e17678cb4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6c4f250-533d-4c32-8970-f7576aeefceb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183519Z:f6c4f250-533d-4c32-8970-f7576aeefceb"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:19 GMT"
+ ],
"Content-Length": [
- "2493"
+ "87"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Certificate not found.\",\r\n \"details\": null\r\n }\r\n}",
+ "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=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "57cf7d89-40b6-482d-9328-77ebc4f9547f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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": {
@@ -160,13 +486,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPS0=\""
+ "\"AAAAAAAACiU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4db7e046-aa06-4e72-90fd-d12590ecbf0b"
+ "94bb7bf5-74a0-46a9-830a-da6badb7b20e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -175,19 +504,88 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e912c060-f6c7-4263-aac8-c3f6218e0218"
+ "b35a76ff-a4f3-4552-b957-7b67b03f24c4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164140Z:e912c060-f6c7-4263-aac8-c3f6218e0218"
+ "WESTUS:20210728T183516Z:b35a76ff-a4f3-4552-b957-7b67b03f24c4"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:16 GMT"
+ ],
+ "Content-Length": [
+ "371"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "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==",
+ "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"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "2493"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAACio=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "c42e662c-5de6-4c76-a071-24dc8cc7f404"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d3ae266-4614-4a5e-b0d5-e4f2bc12ae71"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183517Z:7d3ae266-4614-4a5e-b0d5-e4f2bc12ae71"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:41:40 GMT"
+ "Wed, 28 Jul 2021 18:35:17 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -196,18 +594,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"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": [
- "f61053ce-7481-4c04-a1e6-377b76fb3074"
+ "2b70c32e-51a9-487d-aba8-5b72fe91f002"
],
"If-Match": [
"*"
@@ -216,10 +613,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -236,34 +633,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPS8=\""
+ "\"AAAAAAAACi0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5f1d87dc-5b98-40d5-b8d3-2d6c66d02ee2"
+ "ce8218fd-2104-489c-89ac-64c97f9117d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "1f055650-300f-4e9c-a064-7f01cdfe78f1"
+ "9de86699-2c0f-4265-a98c-47eb6c7ba923"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164141Z:1f055650-300f-4e9c-a064-7f01cdfe78f1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183518Z:9de86699-2c0f-4265-a98c-47eb6c7ba923"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:41 GMT"
+ "Wed, 28 Jul 2021 18:35:18 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -272,26 +669,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f81017b-6629-448d-b454-e684a5f8f752"
+ "e785b165-602d-4498-a5e8-38c53b491051"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -302,34 +699,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPS0=\""
+ "\"AAAAAAAACio=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0199758a-9baa-4693-949b-2ac533bc34aa"
+ "13712fd1-a67d-451c-959f-8d933d343b75"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11995"
],
"x-ms-correlation-request-id": [
- "85e934f6-df17-4d80-9338-f3064e519be2"
+ "7b63d1b3-2cf5-46fb-89a0-43be89b99d25"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164140Z:85e934f6-df17-4d80-9338-f3064e519be2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183517Z:7b63d1b3-2cf5-46fb-89a0-43be89b99d25"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:40 GMT"
+ "Wed, 28 Jul 2021 18:35:17 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -338,26 +735,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bec02abf-7c48-457f-a7ba-086527bbaadc"
+ "609f52a9-7747-4b83-9853-ebb1d5827375"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -368,34 +765,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPS0=\""
+ "\"AAAAAAAACio=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2e227af3-f8b1-4b3e-abcd-d9579a02bc66"
+ "2385daa7-29cd-47a5-9317-20904a83af14"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11994"
],
"x-ms-correlation-request-id": [
- "b1e29ef9-72b5-4fb5-8f87-998f4fc4b37e"
+ "a04ac5fb-e307-4ed0-86b5-97eb429a5174"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164141Z:b1e29ef9-72b5-4fb5-8f87-998f4fc4b37e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183517Z:a04ac5fb-e307-4ed0-86b5-97eb429a5174"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:41 GMT"
+ "Wed, 28 Jul 2021 18:35:17 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -404,26 +801,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aaa025e7-d8ea-42ac-8d5b-7498e413e0c6"
+ "f9460e9c-bcd9-4158-bcfe-6a7fb936e614"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -434,34 +831,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPS0=\""
+ "\"AAAAAAAACio=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cfea42c8-00a8-474f-95d0-9fa87c84aab6"
+ "26639af2-9d06-4be5-b60d-aeb5a149fcf9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11993"
],
"x-ms-correlation-request-id": [
- "53eb6ab5-3ef9-479e-bc3e-75ba36bb9bbc"
+ "87c513fa-c797-4fae-ada9-0bfb5cce17ef"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164141Z:53eb6ab5-3ef9-479e-bc3e-75ba36bb9bbc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183517Z:87c513fa-c797-4fae-ada9-0bfb5cce17ef"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:41 GMT"
+ "Wed, 28 Jul 2021 18:35:17 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -470,26 +867,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f5c130d-19d3-422c-b54b-00c3dd8f2f72"
+ "2b70c32e-51a9-487d-aba8-5b72fe91f002"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -500,34 +897,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPS8=\""
+ "\"AAAAAAAACi0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2acd521b-5fa9-44f8-827f-b796f81af184"
+ "1bf85ea5-86d9-49d0-a6bd-9925b220c56c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11992"
],
"x-ms-correlation-request-id": [
- "973fa7ed-56fe-4e19-b9f2-61dd6d53e7a3"
+ "820c9c3b-5b48-4d7e-a376-40a278afe8a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164142Z:973fa7ed-56fe-4e19-b9f2-61dd6d53e7a3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183518Z:820c9c3b-5b48-4d7e-a376-40a278afe8a6"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:42 GMT"
+ "Wed, 28 Jul 2021 18:35:18 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -536,26 +933,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps5439\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b899b81-ae3c-43f2-b6bc-1cce22f87335"
+ "b29c9961-b5d6-4998-9888-178961afa9ce"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -568,26 +965,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "480c5fe3-b4bc-4e07-a3b0-42261489500e"
+ "c1825104-dcf6-4622-9344-5815a8859b7d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11990"
],
"x-ms-correlation-request-id": [
- "5aa1de4b-440b-45b0-bd04-84e2ad01e34b"
+ "c66ba0bd-cea3-4072-9229-98a3bd8a06dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164142Z:5aa1de4b-440b-45b0-bd04-84e2ad01e34b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183519Z:c66ba0bd-cea3-4072-9229-98a3bd8a06dc"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:42 GMT"
+ "Wed, 28 Jul 2021 18:35:19 GMT"
],
"Content-Length": [
"87"
@@ -603,13 +1000,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps5439?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczU0Mzk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps9003?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczkwMDM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c530d1f-a021-4bc7-8dd1-74147cba77e5"
+ "5755fea9-9f94-4ad6-8642-4415b471177b"
],
"If-Match": [
"*"
@@ -618,10 +1015,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -634,8 +1031,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9eead4e9-95b9-4926-9be0-9ed77326a502"
+ "16df70b8-2acf-4f9e-acf1-4b436150186c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -644,16 +1044,76 @@
"14999"
],
"x-ms-correlation-request-id": [
- "1bb37cbd-6312-4d91-8946-99b487f57208"
+ "fc89cf46-6d7f-40db-9fbb-c992da84b9d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164142Z:1bb37cbd-6312-4d91-8946-99b487f57208"
+ "WESTUS:20210728T183519Z:fc89cf46-6d7f-40db-9fbb-c992da84b9d7"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:35:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d939a3f4-8cc3-4f32-935b-25a4693fe186"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "3a98ebd3-a1e4-4c04-a6e0-c69f8bf1ed7f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "4687a2bb-43d8-4ea1-af86-d20076d45f8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183519Z:4687a2bb-43d8-4ea1-af86-d20076d45f8f"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:41:42 GMT"
+ "Wed, 28 Jul 2021 18:35:19 GMT"
],
"Expires": [
"-1"
@@ -668,7 +1128,7 @@
],
"Names": {
"": [
- "ps5439"
+ "ps9003"
]
},
"Variables": {
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 fc27bd559382..d43c39afa746 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ffe4731-20a6-4f11-9798-2b40ea3815a1"
+ "60d8b4ff-dcc9-4474-a1a8-550819dee198"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4c025c77-780e-47b0-8549-2d7f3e121588"
+ "67bd054d-5bc4-49b6-9b08-5d035209e48d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "06558bc6-f692-4e26-80ee-bd2aba434e87"
+ "2bd698c6-c10f-4b74-97f5-7a892febd197"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164030Z:06558bc6-f692-4e26-80ee-bd2aba434e87"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001205Z:2bd698c6-c10f-4b74-97f5-7a892febd197"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:30 GMT"
+ "Tue, 13 Jul 2021 00:12:04 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4815268-0ad8-4e76-b441-8f6e3d919f48"
+ "37818d38-da77-49bd-b254-441d405100c5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -92,26 +92,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6ab7ab11-ff4c-4fb3-a16b-83a5090d3b84"
+ "5e704c1a-8a50-43a7-93ea-371c1d03eb6b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "35709db1-0dcd-49a0-adc1-f9906ee3f99c"
+ "00e3b8c0-08f5-4e9f-9b4d-3a78cdfbdc32"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164036Z:35709db1-0dcd-49a0-adc1-f9906ee3f99c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001211Z:00e3b8c0-08f5-4e9f-9b4d-3a78cdfbdc32"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:36 GMT"
+ "Tue, 13 Jul 2021 00:12:11 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/ps3806?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzODA2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1386\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"91456f2b-efd7-4190-9b37-71137e3eb705\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93baa819-a06a-4d2b-8edb-4876e9b819b2"
+ "71513fa4-3d61-4e99-9131-0c7c77cccade"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,34 +159,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPLw=\""
+ "\"AAAAAAAA/9c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7953463f-ad27-419e-97c9-3861cee2a073"
+ "e94553aa-8fd4-4df6-b6f6-0a3b7264f698"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "e8cdc266-30e7-48de-992a-f16e53997e88"
+ "3787e93d-4ef0-45fc-84d1-223370713c9a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164033Z:e8cdc266-30e7-48de-992a-f16e53997e88"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001209Z:3787e93d-4ef0-45fc-84d1-223370713c9a"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:33 GMT"
+ "Tue, 13 Jul 2021 00:12:08 GMT"
],
"Content-Length": [
- "505"
+ "506"
],
"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/ps3806\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps3806\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps1386\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171a81a2ca600fe4c296cc}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps3806\",\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/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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8434528f-ecfc-4b00-b10d-a1803da45f3d"
+ "ecea08fe-ddd2-4f8a-8dfd-e9404bb1d661"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,31 +231,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPL4=\""
+ "\"AAAAAAAA/9o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c4d6ddb5-98da-4518-847f-250589b5e82a"
+ "9219dbe4-0d91-4cf8-8e4d-1c35690a80bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "aa272907-4e43-4717-8f42-2aafe116406e"
+ "a6834425-1a94-4418-ae61-a2e48a50339b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164035Z:aa272907-4e43-4717-8f42-2aafe116406e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001210Z:a6834425-1a94-4418-ae61-a2e48a50339b"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:34 GMT"
+ "Tue, 13 Jul 2021 00:12:10 GMT"
],
"Content-Length": [
"1398"
@@ -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/ps3806\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"alwaysLog\": \"allErrors\",\r\n \"loggerId\": \"/loggers/ps3806\",\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/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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbbc7990-8228-4251-989d-27bc26b2ddaa"
+ "acafbca4-7760-4fdc-80eb-68eab857e4ee"
],
"If-Match": [
"*"
@@ -286,10 +286,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -306,31 +306,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPME=\""
+ "\"AAAAAAAA/94=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "af7a22a5-8708-4a04-bd41-b368a8d4aefc"
+ "0f876b4b-e14c-4301-93fb-39f35e6dcdec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "fceb01bb-d582-40c7-ace8-c39f1aabc7e1"
+ "591ef022-53a4-4bae-b917-1a85d4d385ee"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164035Z:fceb01bb-d582-40c7-ace8-c39f1aabc7e1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001211Z:591ef022-53a4-4bae-b917-1a85d4d385ee"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:35 GMT"
+ "Tue, 13 Jul 2021 00:12:10 GMT"
],
"Content-Length": [
"1057"
@@ -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/ps3806\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a7dbc4e-7578-49eb-8a5a-d2949a1ebdbe"
+ "2746f65d-871e-4a14-8b4f-e17b4a025485"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -372,31 +372,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPME=\""
+ "\"AAAAAAAA/94=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5b3d53d5-a32b-477a-b7a8-c58ad94a3809"
+ "5278c207-3ba5-4915-9235-c12456de5193"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "c585ec17-7a97-4130-b1c9-28c99ae81323"
+ "251c9fb9-2532-4b0d-b928-a65dfeea181d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164035Z:c585ec17-7a97-4130-b1c9-28c99ae81323"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001211Z:251c9fb9-2532-4b0d-b928-a65dfeea181d"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:35 GMT"
+ "Tue, 13 Jul 2021 00:12:10 GMT"
],
"Content-Length": [
"1057"
@@ -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/ps3806\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ab37b99-8bf4-411f-ace7-8ea85806f4a0"
+ "f14b08fc-771e-47fa-bbbf-0b8c3f0e555e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -438,31 +438,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPME=\""
+ "\"AAAAAAAA/94=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "50dde091-b28c-4bde-9ab1-355db49870c0"
+ "278036f0-557a-4144-ae76-031a2757adf2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "d09c27b9-ce42-488d-884b-3ccfb077bfa5"
+ "232bd8c8-493c-450d-9bd8-66f92585e787"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164036Z:d09c27b9-ce42-488d-884b-3ccfb077bfa5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001211Z:232bd8c8-493c-450d-9bd8-66f92585e787"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:35 GMT"
+ "Tue, 13 Jul 2021 00:12:11 GMT"
],
"Content-Length": [
"1057"
@@ -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/ps3806\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83703d1d-7a0f-4b6a-bf87-c8d2c3bbbd2f"
+ "3196dd68-d5e2-4cf2-a53b-3031d97fe759"
],
"If-Match": [
"*"
@@ -493,10 +493,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -509,8 +509,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f82c4431-c56d-428c-b921-3f1911910469"
+ "60eda374-6173-4410-b53a-f7a9b0c6265f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -519,16 +522,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "a9b5c81e-a8d0-4e76-be65-b568fd8eda50"
+ "265848a9-c2f7-402b-bd25-bef1c86b4cc5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164036Z:a9b5c81e-a8d0-4e76-be65-b568fd8eda50"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001211Z:265848a9-c2f7-402b-bd25-bef1c86b4cc5"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:35 GMT"
+ "Tue, 13 Jul 2021 00:12:11 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/diagnostics/applicationinsights?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2RpYWdub3N0aWNzL2FwcGxpY2F0aW9uaW5zaWdodHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce49890b-ce18-4df7-ba6a-3c57359222aa"
+ "93987d7a-a298-4375-a288-b842c462ddbf"
],
"If-Match": [
"*"
@@ -556,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -572,8 +572,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5edc8fd6-d9f1-4e7a-8a0b-7a5416839cd7"
+ "22128ab5-e175-4113-9082-46758f01ae97"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -582,16 +585,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "2d9297a2-00dd-49b2-9371-8f90a21e6d7d"
+ "eb84a2d8-0aff-4dc5-9f4c-e09779d8c0d2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164036Z:2d9297a2-00dd-49b2-9371-8f90a21e6d7d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001212Z:eb84a2d8-0aff-4dc5-9f4c-e09779d8c0d2"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:36 GMT"
+ "Tue, 13 Jul 2021 00:12:11 GMT"
],
"Expires": [
"-1"
@@ -601,13 +601,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps3806?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMzODA2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1953?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af79edf3-a95b-47e5-a46f-ef4b0745184e"
+ "24bc1783-1aa3-4b41-9039-5a41167bfed4"
],
"If-Match": [
"*"
@@ -616,10 +616,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -632,8 +632,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "57b41a75-f57e-43c7-a33c-1787efe57a4d"
+ "fbc5604b-5477-4934-87a1-8c3185291379"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,16 +645,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "2ac009d2-d36a-47e9-a2ac-637d23e9dc30"
+ "13c06e8b-5f6a-4fb7-89bc-947ee2db51e8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164036Z:2ac009d2-d36a-47e9-a2ac-637d23e9dc30"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001212Z:13c06e8b-5f6a-4fb7-89bc-947ee2db51e8"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:36 GMT"
+ "Tue, 13 Jul 2021 00:12:12 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9646ef27-e9a9-4bbe-b13a-8873dddb3c56"
+ "36418727-24a9-4d08-88f4-b3588850c075"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -692,29 +692,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f79168fa-3aab-45ff-8ca7-d1fb500acd7c"
+ "f1c999b1-7919-4cdc-aa9c-01e1182532d1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "0b66134b-b538-4fd5-b58e-4cd42fae438c"
+ "c3c1af8e-33cb-40a5-bd58-26e3e91656da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164037Z:0b66134b-b538-4fd5-b58e-4cd42fae438c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001213Z:c3c1af8e-33cb-40a5-bd58-26e3e91656da"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:36 GMT"
+ "Tue, 13 Jul 2021 00:12:12 GMT"
],
"Content-Length": [
- "505"
+ "34"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -723,77 +723,14 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171a81a2ca600fe4c296cb\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171a81a2ca600fe4c296cb\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171a81a2ca600fe4c296cc\",\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/5f171a81a2ca600fe4c296cb?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYTgxYTJjYTYwMGZlNGMyOTZjYj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e91059cc-5efc-4e30-b3fd-5343f40f8c18"
- ],
- "If-Match": [
- "*"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.27817.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "5005d94d-980c-439a-93b3-c7e3f7e6896c"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
- ],
- "x-ms-correlation-request-id": [
- "fbf9be15-6fbf-4dcf-a410-bc0c4dcd1de6"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200721T164037Z:fbf9be15-6fbf-4dcf-a410-bc0c4dcd1de6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Tue, 21 Jul 2020 16:40:37 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"value\": [],\r\n \"count\": 0\r\n}",
"StatusCode": 200
}
],
"Names": {
"": [
- "ps3806",
- "ps1386"
+ "ps1953",
+ "ps9216"
]
},
"Variables": {
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 6a2cc9e49ad5..cfbcd7a19972 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91b3f803-ecf5-47d4-a305-a9c303d9d8fc"
+ "c5b9a52f-797e-4e36-ab0f-4a837a75313e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c982be26-a096-4e48-b06f-9c6059aa5f19"
+ "34ddd902-6076-493e-9e11-515f39b6462c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "90ce59dc-bc94-4ec4-8656-3a664e8faf4c"
+ "8f38ec17-a4f4-41fe-b5db-0d0847ae9eb6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164145Z:90ce59dc-bc94-4ec4-8656-3a664e8faf4c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205433Z:8f38ec17-a4f4-41fe-b5db-0d0847ae9eb6"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:45 GMT"
+ "Tue, 20 Jul 2021 20:54:32 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0b03c4a-fddf-494e-aede-2081d653e53e"
+ "1785bd37-3fd6-4686-b1a2-d321b8c8fedf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -92,29 +92,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fa36f2b0-63ff-4223-b1c6-157a31755f5d"
+ "de45988e-0490-443b-bd96-812c02661dac"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "d4abfed1-6351-4a05-901c-bc36be59ed22"
+ "3d4b72ad-9533-4bbf-9b57-dc46c788954e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164146Z:d4abfed1-6351-4a05-901c-bc36be59ed22"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205435Z:3d4b72ad-9533-4bbf-9b57-dc46c788954e"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:46 GMT"
+ "Tue, 20 Jul 2021 20:54:34 GMT"
],
"Content-Length": [
- "573"
+ "572"
],
"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/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fbd8cca-ad2d-4e34-8b45-1deb074610ff"
+ "95594398-9352-4f97-b424-6799d75da724"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "202"
+ "201"
]
},
"ResponseHeaders": {
@@ -159,34 +159,34 @@
"no-cache"
],
"ETag": [
- "\"ND0AAAAAAAA=\""
+ "\"uQUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dd32cfe8-bd06-4aa2-947e-eab0f2009241"
+ "2fff2d2e-fcbb-4f91-9ae3-818f1fc79066"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "7fce697a-dea1-4d8d-9ddb-0e4c858c7a27"
+ "c981b47b-a008-46ea-ba11-38d214610afc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164146Z:7fce697a-dea1-4d8d-9ddb-0e4c858c7a27"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205434Z:c981b47b-a008-46ea-ba11-38d214610afc"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:46 GMT"
+ "Tue, 20 Jul 2021 20:54:33 GMT"
],
"Content-Length": [
- "475"
+ "474"
],
"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/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d913fbb-332b-4a8a-ace9-3054d2faae30"
+ "cd77463d-72f4-4e29-b6bb-a2808e62cbb4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,34 +225,34 @@
"no-cache"
],
"ETag": [
- "\"ND0AAAAAAAA=\""
+ "\"uQUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e521c888-fa29-42fa-837b-eb17801cf2fa"
+ "91fc94c8-0b24-4cc1-a99e-306e0dca3d1c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "5f7907dd-ecd0-4882-b383-d3981d6542dd"
+ "1aa68c6a-29c7-4c05-8a71-3a555f32ac46"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164146Z:5f7907dd-ecd0-4882-b383-d3981d6542dd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205435Z:1aa68c6a-29c7-4c05-8a71-3a555f32ac46"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:46 GMT"
+ "Tue, 20 Jul 2021 20:54:34 GMT"
],
"Content-Length": [
- "473"
+ "472"
],
"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/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "898dd3ea-96d4-44a5-876a-d0973325aaf3"
+ "cf0d537d-f6d8-4650-a915-1393c0b291f0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -291,34 +291,34 @@
"no-cache"
],
"ETag": [
- "\"ND0AAAAAAAA=\""
+ "\"uQUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1bc5d986-bb56-4b4e-9f9b-69c8dea24209"
+ "6dcbf57d-7be6-4a9a-81da-fd346460d63d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "5ddb4dab-99f4-4502-9e5b-b67d508a6061"
+ "6d3816f4-b7c2-4a88-a17e-981bf9305cf4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164147Z:5ddb4dab-99f4-4502-9e5b-b67d508a6061"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205435Z:6d3816f4-b7c2-4a88-a17e-981bf9305cf4"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:46 GMT"
+ "Tue, 20 Jul 2021 20:54:34 GMT"
],
"Content-Length": [
- "473"
+ "472"
],
"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/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps3781\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "73b9a789-3cf2-4153-af44-446cdeb95c6d"
+ "cf0d537d-f6d8-4650-a915-1393c0b291f0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,34 +357,34 @@
"no-cache"
],
"ETag": [
- "\"NT0AAAAAAAA=\""
+ "\"ugUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8cd9e91e-6c0a-4656-b2bf-08a43fbf6b0f"
+ "53263619-6b61-49bc-b3e6-318cc81ae3cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "4cdb877a-140d-4cc2-a3d8-904c5b742de4"
+ "8ef45afe-d09d-4eb7-84ab-da75ce30e16f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164147Z:4cdb877a-140d-4cc2-a3d8-904c5b742de4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205436Z:8ef45afe-d09d-4eb7-84ab-da75ce30e16f"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:47 GMT"
+ "Tue, 20 Jul 2021 20:54:35 GMT"
],
"Content-Length": [
- "473"
+ "472"
],
"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/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps1923\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a6e321f0-7bf0-4f22-8459-b9e5bb5173b1"
+ "166bf726-e2a0-49ae-afae-d0e50f0cce36"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,34 +423,34 @@
"no-cache"
],
"ETag": [
- "\"Nj0AAAAAAAA=\""
+ "\"uwUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b0ae19d9-ed02-4c98-bebb-d31eb653b8f7"
+ "045bce67-2455-4a3a-ae28-26a65a6ddc94"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "93b5859e-f86c-4bd9-ae57-31ea5ffd8d96"
+ "bb2456c1-d5b7-4242-a88a-7027d3328681"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164148Z:93b5859e-f86c-4bd9-ae57-31ea5ffd8d96"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205436Z:bb2456c1-d5b7-4242-a88a-7027d3328681"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:47 GMT"
+ "Tue, 20 Jul 2021 20:54:35 GMT"
],
"Content-Length": [
- "473"
+ "472"
],
"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/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps4428\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "103268e3-82d9-41ab-b6d1-59278995b7cf"
+ "d382569f-9601-4876-bf3b-f4f3571c4716"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -489,31 +489,31 @@
"no-cache"
],
"ETag": [
- "\"Nz0AAAAAAAA=\""
+ "\"vAUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4fea2ffb-d2e5-4b07-867d-2a30b411d2f1"
+ "6e398545-5e4d-4b6a-bad5-d420e07dc88f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "a4e4775e-ab53-482f-8179-619c6d286de2"
+ "7334462f-7a36-4a3a-a67d-a5eeb6f699cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164148Z:a4e4775e-ab53-482f-8179-619c6d286de2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205436Z:7334462f-7a36-4a3a-a67d-a5eeb6f699cf"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:48 GMT"
+ "Tue, 20 Jul 2021 20:54:35 GMT"
],
"Content-Length": [
"465"
@@ -525,26 +525,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways\",\r\n \"name\": \"ps5610\",\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps3976\",\r\n \"district\": null,\r\n \"countryOrRegion\": null\r\n },\r\n \"description\": \"ps4428\",\r\n \"heartbeat\": []\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "617b6bee-562e-4ba8-8cfa-5869063d7f61"
+ "204c7d06-0814-4dae-ab84-a14a992a55e2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -557,26 +557,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b387b76b-22fc-47e1-9118-fd8e5634272d"
+ "32ecc554-b6d7-4c99-ba23-6bea2ecd6b3a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11986"
],
"x-ms-correlation-request-id": [
- "e0a5990c-3b5c-4319-9eea-050826e863bf"
+ "bde77773-570f-49db-91ac-2743dedae014"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164151Z:e0a5990c-3b5c-4319-9eea-050826e863bf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205446Z:bde77773-570f-49db-91ac-2743dedae014"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:51 GMT"
+ "Tue, 20 Jul 2021 20:54:46 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/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps1570\",\r\n \"district\": \"ps9962\",\r\n \"countryOrRegion\": \"ps8447\"\r\n },\r\n \"description\": \"ps1923\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c7165b2-ff6d-45c6-8e88-4a11686468e8"
+ "cf0d537d-f6d8-4650-a915-1393c0b291f0"
],
"If-Match": [
"*"
@@ -607,16 +607,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "202"
+ "201"
]
},
"ResponseHeaders": {
@@ -626,45 +626,54 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"ugUBAAAAAAA=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e512184e-f455-4475-93d0-006255d6d98f"
+ "e1e5fd78-0a19-4bf2-8355-fc4853764d2b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "84ad2547-e53b-4342-bb10-ed3c494a3e09"
+ "43dc96ad-1526-4c54-8c39-467a4300f608"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164147Z:84ad2547-e53b-4342-bb10-ed3c494a3e09"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205435Z:43dc96ad-1526-4c54-8c39-467a4300f608"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:47 GMT"
+ "Tue, 20 Jul 2021 20:54:34 GMT"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4428\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps8393\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d18e86f7-4abb-4cec-87bd-0a3712716fc6"
+ "166bf726-e2a0-49ae-afae-d0e50f0cce36"
],
"If-Match": [
"*"
@@ -673,10 +682,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -692,45 +701,54 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"uwUBAAAAAAA=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "30c32a0c-f5f8-4253-bd22-c0de273b2b25"
+ "31cb413b-bd29-469b-9db1-18ceb6621a96"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "687d14a9-04b2-4619-881b-d3d758200250"
+ "b45e264f-f26b-4e67-ab0b-17a2939571d5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164147Z:687d14a9-04b2-4619-881b-d3d758200250"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205436Z:b45e264f-f26b-4e67-ab0b-17a2939571d5"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:47 GMT"
+ "Tue, 20 Jul 2021 20:54:35 GMT"
+ ],
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps6437\",\r\n \"city\": \"ps3976\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"locationData\": {\r\n \"name\": \"ps1616\",\r\n \"city\": \"ps5629\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "194cadd9-b8a4-4ad9-9d76-fae65c87b79c"
+ "d382569f-9601-4876-bf3b-f4f3571c4716"
],
"If-Match": [
"*"
@@ -739,10 +757,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -758,54 +776,63 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"vAUBAAAAAAA=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "848fa248-795e-411b-8f76-3ffd9c6139d8"
+ "ae22e374-7491-4c5a-ad94-8e6cc0be9093"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "c51a6567-61b6-40e0-af34-f9c8d04c898a"
+ "28f70e46-c465-44d3-b8f8-84fc5f3359a7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164148Z:c51a6567-61b6-40e0-af34-f9c8d04c898a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205436Z:28f70e46-c465-44d3-b8f8-84fc5f3359a7"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:48 GMT"
+ "Tue, 20 Jul 2021 20:54:35 GMT"
+ ],
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/listKeys?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/listKeys?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7cf6f63-f05e-45c4-acf3-9489b8777e02"
+ "1d0d7d6c-9033-4b62-aeee-8baed9b61fab"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -816,13 +843,16 @@
"no-cache"
],
"ETag": [
- "\"Nz0AAAAAAAA=\""
+ "\"vAUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "19804bb1-63ce-455b-b284-4fdc012ec918"
+ "6a3a9d7d-6f2f-413e-ae04-553f32b41d00"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -831,16 +861,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "464a5601-88d2-4cfc-ac64-2648f59b71b7"
+ "d021e7fa-8eeb-42a7-9b92-af5d82dd8c23"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164148Z:464a5601-88d2-4cfc-ac64-2648f59b71b7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205436Z:d021e7fa-8eeb-42a7-9b92-af5d82dd8c23"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:48 GMT"
+ "Tue, 20 Jul 2021 20:54:35 GMT"
],
"Content-Length": [
"205"
@@ -852,26 +879,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primary\": \"3VmgDEOZhND27l/meKJGhphSaMQjhfint88SqfE5/jofBm/oeFuHCn7RYCuk8mXKmmczVYsTEE8wW74G9Q5AwQ==\",\r\n \"secondary\": \"Eyma/lCxpEIOHJ1H60M32kEVUZWeojoGpwzMH1LmiCfBN8lSCJvrVs/P3VcaH6oePJjH4XgtvSBsRDi3JGcLPw==\"\r\n}",
+ "ResponseBody": "{\r\n \"primary\": \"93P88yPROrv+1nQXdLrwmB8G0BWGV4HV9Y7wyFHPVaKMnZAdy+9d0jh+cKD4pijWy4xNkjhO3o0eUKaPPn2DJA==\",\r\n \"secondary\": \"7RToBk46s24JMbzqBzodqSj/jipEaX1zqyjg5zBvGxcf12Ysoqhz/BM4IMgQIYDJNnucGo3/YKCUjrrQDZQGpw==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3024ca2-8fe9-4962-ae15-26aab8020e73"
+ "640ff3e4-90a1-431b-aa23-d49663a82be4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -884,26 +911,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "83aa55d7-2afa-4e0d-b507-eb6b5f23b4c2"
+ "b1f09a6b-838c-4c6e-a464-68a4a42979cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-correlation-request-id": [
- "64baf6eb-b5a1-40e5-b62e-8158692bbe49"
+ "8c4ef7ae-a9c1-4d16-9dff-80e672960122"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164148Z:64baf6eb-b5a1-40e5-b62e-8158692bbe49"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205437Z:8c4ef7ae-a9c1-4d16-9dff-80e672960122"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:48 GMT"
+ "Tue, 20 Jul 2021 20:54:37 GMT"
],
"Content-Length": [
"729"
@@ -919,22 +946,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20d04600-771e-4673-9374-83065f1f1a1b"
+ "153a511f-d9e0-4c1f-9bdb-b0db925bf04f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -945,31 +972,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPIk=\""
+ "\"AAAAAAAA/5E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7158eeb7-ef9e-44cb-b81e-ac227c324236"
+ "39e2afe6-fbfc-4b08-8e01-b084cb64b234"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-correlation-request-id": [
- "e82f4d1b-c5d9-404b-bcbc-2bd3f41e585a"
+ "64d7f8aa-3520-4ec0-9924-f1a04296218f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164149Z:e82f4d1b-c5d9-404b-bcbc-2bd3f41e585a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205437Z:64d7f8aa-3520-4ec0-9924-f1a04296218f"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:48 GMT"
+ "Tue, 20 Jul 2021 20:54:37 GMT"
],
"Content-Length": [
"619"
@@ -981,26 +1008,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4cee81f-671e-44ae-96e4-7de74e89396f"
+ "5d8ae6d4-8872-426b-a426-5df02e2dec86"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1013,26 +1040,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "eac8279d-d1b5-4d12-898f-b05fd562327a"
+ "e5f940a7-b7cc-4e3d-95ce-52c6b8b48d08"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-correlation-request-id": [
- "f246e43f-c71b-45b5-8463-f9890389d7b5"
+ "f315ae16-3de9-49a5-a902-585544baf3e8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164149Z:f246e43f-c71b-45b5-8463-f9890389d7b5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205438Z:f315ae16-3de9-49a5-a902-585544baf3e8"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:48 GMT"
+ "Tue, 20 Jul 2021 20:54:38 GMT"
],
"Content-Length": [
"754"
@@ -1044,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/ps5610/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7da58f2f-92f9-4adb-91f5-e1175111e962"
+ "cb5846ac-a062-41f4-9985-e27294119272"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1076,26 +1103,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "63cc7303-5bc1-47f0-a45c-2eae325d73bb"
+ "8294a078-5aa2-402d-b9ec-f395d96efa22"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11990"
],
"x-ms-correlation-request-id": [
- "84a76df2-d736-4446-b821-60ef0115caa5"
+ "ce77701d-316e-4bab-81cf-f1182a0212a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164149Z:84a76df2-d736-4446-b821-60ef0115caa5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205439Z:ce77701d-316e-4bab-81cf-f1182a0212a1"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:49 GMT"
+ "Tue, 20 Jul 2021 20:54:39 GMT"
],
"Content-Length": [
"34"
@@ -1111,22 +1138,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd0eb0a7-9203-45a1-9bd3-d63be966ccf5"
+ "5493c3c1-9369-4f6b-af79-3496886d5b52"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1139,8 +1166,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7f71b12e-3f4e-4f25-bcd3-72bc51fc7d52"
+ "d5df05c8-5ce6-43d0-91dc-adfc39f09b54"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1149,16 +1179,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "e0d073d8-dd2b-4852-bb0e-e0f9054f9cbe"
+ "587c483a-edae-4f75-ad1b-f407d7278285"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164149Z:e0d073d8-dd2b-4852-bb0e-e0f9054f9cbe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205439Z:587c483a-edae-4f75-ad1b-f407d7278285"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:49 GMT"
+ "Tue, 20 Jul 2021 20:54:39 GMT"
],
"Expires": [
"-1"
@@ -1171,23 +1198,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"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": [
- "645a6b8c-16d7-4d66-802c-631ee6a0ad2d"
+ "709e3dea-67b9-4a76-ac5f-c932e55ef21a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1204,34 +1230,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPUc=\""
+ "\"AAAAAAABBdI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ed572414-220f-4390-a478-bd399284d325"
+ "5b2cc432-46fc-4427-bedc-ca9024d813c4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1194"
],
"x-ms-correlation-request-id": [
- "6d3d17b5-b790-495a-a190-826b02cf8345"
+ "e9a46296-81ee-4fb9-bbef-b1e88f9e9033"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164149Z:6d3d17b5-b790-495a-a190-826b02cf8345"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205440Z:e9a46296-81ee-4fb9-bbef-b1e88f9e9033"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:49 GMT"
+ "Tue, 20 Jul 2021 20:54:40 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1240,26 +1266,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps3580\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8bc434b4-692b-40a5-804c-0c777df85a01"
+ "709e3dea-67b9-4a76-ac5f-c932e55ef21a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1270,34 +1296,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPUc=\""
+ "\"AAAAAAABBdI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "807f7f2e-c01f-4136-bd7d-fb84e78270c0"
+ "d4d8a385-dcf3-4bec-85fc-4358253cd59f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11989"
],
"x-ms-correlation-request-id": [
- "98535471-f31a-45e2-aca5-57a671794158"
+ "f9ae17c5-3ecb-4692-ba0b-aa13f9d59c13"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164150Z:98535471-f31a-45e2-aca5-57a671794158"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205441Z:f9ae17c5-3ecb-4692-ba0b-aa13f9d59c13"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:49 GMT"
+ "Tue, 20 Jul 2021 20:54:41 GMT"
],
"Content-Length": [
- "433"
+ "461"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1306,26 +1332,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"ps3580\",\r\n \"properties\": {\r\n \"subject\": \"CN=*.msitesting.net\",\r\n \"thumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"expirationDate\": \"2036-01-01T07:00:00Z\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"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/ps3580\",\r\n \"negotiateClientCertificate\": false\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42e3bc24-ff63-4415-bf30-5a857f8ad0f0"
+ "4f71e2fd-84d6-4064-ac44-7e650879e36c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1342,34 +1368,34 @@
"no-cache"
],
"ETag": [
- "\"ST0AAAAAAAA=\""
+ "\"1QUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "62c5255a-3ef3-46a7-b832-37203437ca94"
+ "87953ab7-f418-4fbd-9eb6-8e55875b7be6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1193"
],
"x-ms-correlation-request-id": [
- "9d995e2e-ab81-4669-ad09-74b23bc445f3"
+ "baaab43f-15ab-4a6d-98c1-192f4c62f9b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164150Z:9d995e2e-ab81-4669-ad09-74b23bc445f3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205442Z:baaab43f-15ab-4a6d-98c1-192f4c62f9b4"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:50 GMT"
+ "Tue, 20 Jul 2021 20:54:42 GMT"
],
"Content-Length": [
- "674"
+ "676"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1378,26 +1404,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\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/ps3580\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d5fe3ef-0355-4df5-8e20-c4c2ff8f912e"
+ "331d5020-9ecf-42a7-9dd1-9573fb70bf25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1408,34 +1434,34 @@
"no-cache"
],
"ETag": [
- "\"ST0AAAAAAAA=\""
+ "\"1QUBAAAAAAA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "eabc7908-1fe4-4b7c-9100-260d6fa2c5e8"
+ "a432bbac-b9e2-4d9d-9074-fa0092fb20f8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11988"
],
"x-ms-correlation-request-id": [
- "1d0c3a93-95be-40fe-8149-ca17192a061a"
+ "3a1a0355-dd20-4123-bcf3-916a605b6333"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164150Z:1d0c3a93-95be-40fe-8149-ca17192a061a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205442Z:3a1a0355-dd20-4123-bcf3-916a605b6333"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:50 GMT"
+ "Tue, 20 Jul 2021 20:54:42 GMT"
],
"Content-Length": [
- "674"
+ "676"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1444,26 +1470,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\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/ps3580\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435/hostnameConfigurations?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNS9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3fd2cc0d-e7cb-463a-bcbf-068413f6281e"
+ "4698e04d-3669-4bb8-a649-23a87e031ed9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1476,29 +1502,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7e97dac5-a916-4eec-a034-369fe2a1e05e"
+ "5e89645f-4298-47a5-b84e-5d5b4ade0364"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11987"
],
"x-ms-correlation-request-id": [
- "4ffa8618-f6ba-47be-9bdf-c120edd8f7b0"
+ "661c63af-94a3-4207-86d2-2a95521ea6af"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164150Z:4ffa8618-f6ba-47be-9bdf-c120edd8f7b0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205443Z:661c63af-94a3-4207-86d2-2a95521ea6af"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:50 GMT"
+ "Tue, 20 Jul 2021 20:54:43 GMT"
],
"Content-Length": [
- "766"
+ "768"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1507,26 +1533,29 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404\",\r\n \"type\": \"Microsoft.ApiManagement/service/gateways/hostnameConfigurations\",\r\n \"name\": \"ps404\",\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/ps3580\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610/hostnameConfigurations/ps404?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMC9ob3N0bmFtZUNvbmZpZ3VyYXRpb25zL3BzNDA0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9eed8c56-cbb6-44f6-abe2-acb58aaa4932"
+ "7015c463-e47b-4db2-ab0e-ad0ecef04864"
+ ],
+ "If-Match": [
+ "*"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1539,8 +1568,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b415dca0-53a3-468f-97d2-a87c158627cc"
+ "74080233-913b-40ce-a73d-ee61d3925d95"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1549,16 +1581,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "32f18491-ee75-479b-bb70-f6b89aad7b3d"
+ "1abeca0a-e74d-4489-92d3-8a78c10129e5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164151Z:32f18491-ee75-479b-bb70-f6b89aad7b3d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205443Z:1abeca0a-e74d-4489-92d3-8a78c10129e5"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:50 GMT"
+ "Tue, 20 Jul 2021 20:54:43 GMT"
],
"Expires": [
"-1"
@@ -1571,13 +1600,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps3580?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczM1ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/certificates/ps6834?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2NlcnRpZmljYXRlcy9wczY4MzQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad1081ff-92a3-4bba-9d0c-40e7e7f1e03e"
+ "66bdb152-21a5-4a6e-8c93-ae265f43741e"
],
"If-Match": [
"*"
@@ -1586,10 +1615,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1602,8 +1631,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "503ed782-9ef2-479c-a7fb-b3fdadb6cdd8"
+ "81b64ca9-2c5c-482c-8bbc-073e02813c9a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1612,16 +1644,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "d7ac27f7-6187-4971-959d-abdafa9fbabd"
+ "0096cf47-78d0-40e1-974a-c7a4ea29e359"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164151Z:d7ac27f7-6187-4971-959d-abdafa9fbabd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205445Z:0096cf47-78d0-40e1-974a-c7a4ea29e359"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:51 GMT"
+ "Tue, 20 Jul 2021 20:54:45 GMT"
],
"Expires": [
"-1"
@@ -1634,13 +1663,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps5610?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzNTYxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/gateways/ps2435?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dhdGV3YXlzL3BzMjQzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49b8b18a-d36b-4767-ad73-28bf2a164015"
+ "7671b02a-bd52-4ad9-8dbd-923e7e2faf30"
],
"If-Match": [
"*"
@@ -1649,10 +1678,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1665,8 +1694,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3e0cb3bc-7c6b-4429-af40-4f77a170b5b2"
+ "b3321450-05bc-4127-a3fd-472a74737e06"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1675,16 +1707,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "591c97e0-d9a1-4a26-ae4a-245a390281b7"
+ "a56287cc-ba42-4eb0-809d-23a88ec45141"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164151Z:591c97e0-d9a1-4a26-ae4a-245a390281b7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210720T205446Z:a56287cc-ba42-4eb0-809d-23a88ec45141"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:51 GMT"
+ "Tue, 20 Jul 2021 20:54:46 GMT"
],
"Expires": [
"-1"
@@ -1699,17 +1728,17 @@
],
"Names": {
"": [
- "ps5610",
- "ps404",
- "ps3580",
- "ps3781",
- "ps1570",
- "ps6437",
- "ps8447",
- "ps9962",
- "ps1923",
- "ps4428",
- "ps3976"
+ "ps2435",
+ "ps8698",
+ "ps6834",
+ "ps9171",
+ "ps3451",
+ "ps1616",
+ "ps2977",
+ "ps488",
+ "ps3175",
+ "ps8393",
+ "ps5629"
]
},
"Variables": {
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 ea7bf7c5c8a6..9cdf273ac79c 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18a81d11-e5c5-4034-9adb-5b5dfebd03a0"
+ "e5a0805d-0185-458b-adb9-c9c2476e8435"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ba4b026a-7d32-4af1-977d-9ff358975e2c"
+ "889712e2-e485-41cd-9d5a-657acd72f79d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "4d112701-9c4d-4519-8936-8f705dde7d81"
+ "23918c29-0a31-4467-8623-85929fa728e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164051Z:4d112701-9c4d-4519-8936-8f705dde7d81"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001236Z:23918c29-0a31-4467-8623-85929fa728e7"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:50 GMT"
+ "Tue, 13 Jul 2021 00:12:36 GMT"
],
"Content-Length": [
"1808"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9hZG1pbmlzdHJhdG9ycz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/administrators?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9hZG1pbmlzdHJhdG9ycz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be5d348e-181e-4b23-aed7-ee1f3c629dad"
+ "cedae6c5-b60a-4ba0-99e0-a3169ee59ec6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -95,8 +95,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c4be8367-4b07-473f-a98c-f593afbdd287"
+ "ba5d77db-fd13-4413-88ff-cde3a318f3a4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +108,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "0ac85734-c3be-4f86-9804-343763e9016b"
+ "71b359d4-c8f0-4807-9ab4-33cad9b164fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164051Z:0ac85734-c3be-4f86-9804-343763e9016b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001237Z:71b359d4-c8f0-4807-9ab4-33cad9b164fb"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:51 GMT"
+ "Tue, 13 Jul 2021 00:12:36 GMT"
],
"Content-Length": [
"562"
@@ -130,22 +130,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9kZXZlbG9wZXJzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/developers?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9kZXZlbG9wZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6d2f601-d6e4-4345-8ff8-253687ea05a6"
+ "a9cbbc9a-52b0-446a-9660-a36a5a44d5bc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -161,8 +161,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d04d8be5-40d8-4180-9c76-a77154117b0c"
+ "0ab10d17-b8b7-4520-9262-30251b45b084"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +174,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "0dc76149-af08-4369-8e16-a12019a73466"
+ "540f9440-d592-4f49-9354-0eae83a020a9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164052Z:0dc76149-af08-4369-8e16-a12019a73466"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001237Z:540f9440-d592-4f49-9354-0eae83a020a9"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:51 GMT"
+ "Tue, 13 Jul 2021 00:12:36 GMT"
],
"Content-Length": [
"518"
@@ -196,22 +196,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/guests?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9ndWVzdHM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "474474ce-ac4f-42fc-87c8-32fba98e3bff"
+ "74a45251-4471-41db-867c-ec6734f4b467"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -227,8 +227,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "381b9250-cf56-4dce-968d-d4b4571b570c"
+ "9387159b-51e3-42aa-9adf-4ccbe7902441"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +240,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4463ee72-2755-44de-8b5e-cc097658d42a"
+ "13c8a2e1-e026-453b-97f9-857fb597dca7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164052Z:4463ee72-2755-44de-8b5e-cc097658d42a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001237Z:13c8a2e1-e026-453b-97f9-857fb597dca7"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:51 GMT"
+ "Tue, 13 Jul 2021 00:12:36 GMT"
],
"Content-Length": [
"538"
@@ -262,22 +262,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"type\": \"custom\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps3090\",\r\n \"description\": \"ps6658\",\r\n \"type\": \"custom\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da057424-1414-4846-95a1-3ed7b11920dc"
+ "6386b48f-0a05-41a1-9af9-bafea5fe7d09"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -294,13 +294,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPM0=\""
+ "\"AAAAAAAA/+w=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "66c6b88a-0930-4253-9715-d9b8a6f47526"
+ "d46ba41a-4349-4ed4-83ba-47b3d83a9b5d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,19 +312,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "3fb6b047-0de3-452b-8e00-fdce6f125483"
+ "5dee3764-62c5-4c5e-8a0b-75982022575e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164052Z:3fb6b047-0de3-452b-8e00-fdce6f125483"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001238Z:5dee3764-62c5-4c5e-8a0b-75982022575e"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:51 GMT"
+ "Tue, 13 Jul 2021 00:12:38 GMT"
],
"Content-Length": [
- "403"
+ "401"
],
"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/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3851b9f7-4610-4b9c-8982-f0ceb26610aa"
+ "6386b48f-0a05-41a1-9af9-bafea5fe7d09"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,13 +360,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPM0=\""
+ "\"AAAAAAAA/+w=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3279da16-5ba8-41b0-a6ec-f5914a8088ac"
+ "5a3062b5-3bb9-4114-a11a-2b03ae555d88"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,19 +378,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "57c60766-6b8b-415c-840a-d81e9c03905a"
+ "bba40a43-41d7-43d4-8ec4-a4d4d525abee"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164052Z:57c60766-6b8b-415c-840a-d81e9c03905a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001238Z:bba40a43-41d7-43d4-8ec4-a4d4d525abee"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:51 GMT"
+ "Tue, 13 Jul 2021 00:12:38 GMT"
],
"Content-Length": [
- "403"
+ "401"
],
"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/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps4054\",\r\n \"description\": \"ps3351\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cacc481c-0cdb-4959-aebe-4166d43b29f7"
+ "91c222cb-3718-4efb-8682-c2c1fd4b501c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,13 +426,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPM8=\""
+ "\"AAAAAAAA/+8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "58d48fab-44c8-46ca-8505-b583c3365189"
+ "7fa67086-1198-4ba0-81a4-612ffa93ded4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,19 +444,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "ebe84916-38dd-4d0a-bde3-1eadb2ddb3b3"
+ "6dc55796-2dd6-4705-9ddc-55ff85ce10fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164053Z:ebe84916-38dd-4d0a-bde3-1eadb2ddb3b3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001239Z:6dc55796-2dd6-4705-9ddc-55ff85ce10fb"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:52 GMT"
+ "Tue, 13 Jul 2021 00:12:38 GMT"
],
"Content-Length": [
- "402"
+ "400"
],
"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/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7cfc2039-98c7-4988-9b12-60f2fb1a4dac"
+ "006f738f-efb0-41e7-b9ab-162f5d1ddb76"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -494,8 +494,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8f549e4c-31c6-4943-bcdd-d7beb9c4683c"
+ "df6b2155-41a1-4368-8b84-877300fab53e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +507,13 @@
"11986"
],
"x-ms-correlation-request-id": [
- "0dca6e30-a2da-4b9b-91ad-c920a9d3722e"
+ "ed4910cf-42a0-4e52-9c97-921394884faa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164058Z:0dca6e30-a2da-4b9b-91ad-c920a9d3722e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001244Z:ed4910cf-42a0-4e52-9c97-921394884faa"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:57 GMT"
+ "Tue, 13 Jul 2021 00:12:43 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/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps816\",\r\n \"description\": \"ps9328\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "082a6e4f-dbf2-4ba9-852a-f2fb82f003fa"
+ "91c222cb-3718-4efb-8682-c2c1fd4b501c"
],
"If-Match": [
"*"
@@ -544,10 +544,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -563,11 +563,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAA/+8=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fc9cd263-30e6-4c16-8de2-1ffd43b8ef6f"
+ "dd313866-1ca6-4d9a-838b-5381fd915d9b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,41 +582,44 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7dc4c04e-2981-4f32-94ea-c0a3df2198af"
+ "7d6ef448-82b0-4dc8-ab2a-ae1bdfcc33b0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164053Z:7dc4c04e-2981-4f32-94ea-c0a3df2198af"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001239Z:7d6ef448-82b0-4dc8-ab2a-ae1bdfcc33b0"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:52 GMT"
+ "Tue, 13 Jul 2021 00:12:38 GMT"
+ ],
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "874a6d45-eb3b-4920-b047-869729c36d93"
+ "249b0be6-580f-470c-98a8-7553715858d4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -623,8 +632,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6b698b2a-9039-4357-a526-d723d3de3edd"
+ "28d2d38e-0013-4851-bb0e-23b0c6317ba9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +645,13 @@
"11993"
],
"x-ms-correlation-request-id": [
- "3e28dabc-e19a-4436-b0b9-da3cf78df62c"
+ "d7c8fd1d-fbf0-4fa5-b403-6535d1c5207a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164053Z:3e28dabc-e19a-4436-b0b9-da3cf78df62c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001239Z:d7c8fd1d-fbf0-4fa5-b403-6535d1c5207a"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:52 GMT"
+ "Tue, 13 Jul 2021 00:12:38 GMT"
],
"Content-Length": [
"1287"
@@ -658,22 +667,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDY4MD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12446dc8-fd35-4c3e-8236-9392bf1657f6"
+ "29836173-f9fb-4589-9806-0ca7c9243f10"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -684,13 +693,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPM8=\""
+ "\"AAAAAAAA/+8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bdf5a550-5cbb-4a03-9777-58760c25a0f6"
+ "fcf0d88b-b57b-4d69-baaf-6dbe3fff0a5b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -699,19 +711,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "69765349-5d3a-4246-9aa5-966706a76a39"
+ "c7729575-5dc4-4e96-bcbd-7c17941a4471"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164053Z:69765349-5d3a-4246-9aa5-966706a76a39"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001239Z:c7729575-5dc4-4e96-bcbd-7c17941a4471"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:52 GMT"
+ "Tue, 13 Jul 2021 00:12:39 GMT"
],
"Content-Length": [
- "428"
+ "426"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,26 +729,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c41e3cc-7ecf-4ff0-ac70-cc92b52d7eb0"
+ "c4a8f62f-8d0f-437f-9d15-4b5630a4d7e6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -752,8 +761,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b7868f2f-03ee-4fdf-82f6-8a806fecf121"
+ "2bc124a5-2e7a-4d1e-9edf-d06940fc1eff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -762,19 +774,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "fdd35c75-bc09-468e-8862-7697c24d2eb6"
+ "bc21b2a8-717c-4fc8-bd8c-9aace352db80"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164054Z:fdd35c75-bc09-468e-8862-7697c24d2eb6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001240Z:bc21b2a8-717c-4fc8-bd8c-9aace352db80"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:53 GMT"
+ "Tue, 13 Jul 2021 00:12:39 GMT"
],
"Content-Length": [
- "2365"
+ "2363"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -783,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/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec547191-a638-4afc-95e6-29172952a22e"
+ "52998508-11ea-4850-8502-5b9e1fd99076"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -815,8 +824,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b89f0d06-3251-482b-a508-f691025e9ee6"
+ "b6322dc1-6e7d-4b45-a58b-2277a86360c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -825,16 +837,13 @@
"11991"
],
"x-ms-correlation-request-id": [
- "ac6fd5d4-7f4b-49de-85db-4c3473636668"
+ "eb92a59e-8a8e-4d02-b62f-2852b7f451cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164054Z:ac6fd5d4-7f4b-49de-85db-4c3473636668"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001240Z:eb92a59e-8a8e-4d02-b62f-2852b7f451cc"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:53 GMT"
+ "Tue, 13 Jul 2021 00:12:40 GMT"
],
"Content-Length": [
"1886"
@@ -850,22 +859,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvZ3JvdXBzL3BzNDY4MD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "747eab8e-7c11-425a-b455-4946512fd4ff"
+ "aa963712-622d-43f2-8b3d-6047cdf5d614"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -878,8 +887,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "114cb7e8-6b6d-4425-b570-df95923d6b93"
+ "557da25a-a38e-44eb-9935-ede10310e16c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -888,16 +900,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "3c1fe3f4-7781-4812-ac2f-7a371083993a"
+ "cdc21493-434b-4dbc-9f84-60f6ef2d6b18"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164054Z:3c1fe3f4-7781-4812-ac2f-7a371083993a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001240Z:cdc21493-434b-4dbc-9f84-60f6ef2d6b18"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:53 GMT"
+ "Tue, 13 Jul 2021 00:12:40 GMT"
],
"Expires": [
"-1"
@@ -910,22 +919,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffbf5899-2908-44aa-ac7e-2478073d76b6"
+ "4a639a03-119f-4c61-94ad-2af0c72ee0de"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -938,8 +947,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "15ffe4b4-6fbd-403c-88ce-57d6ffedc169"
+ "7de8b4e7-14cf-4bcc-9f19-65462b867167"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -948,16 +960,13 @@
"11990"
],
"x-ms-correlation-request-id": [
- "206aac81-3a51-47af-87ae-5baade181b0f"
+ "31707ca7-d147-41b8-98fe-02179ae49f3c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164055Z:206aac81-3a51-47af-87ae-5baade181b0f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001240Z:31707ca7-d147-41b8-98fe-02179ae49f3c"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:54 GMT"
+ "Tue, 13 Jul 2021 00:12:40 GMT"
],
"Content-Length": [
"664"
@@ -973,22 +982,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODAvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebf7fee9-b8d4-4e67-a2d6-ada9c36252de"
+ "f4e2af03-e52d-4906-8915-2970e261b11b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -999,13 +1008,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPNg=\""
+ "\"AAAAAAAA//s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "abca5541-da33-42bb-87da-c20fc5fc9ac0"
+ "39072f9f-feb3-456e-b51d-543c47f44d79"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1014,19 +1026,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "537371b8-b35a-474c-ac9c-b44a6380a7b0"
+ "5d5bcb03-5847-4059-927f-e73e67073f5f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164055Z:537371b8-b35a-474c-ac9c-b44a6380a7b0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001241Z:5d5bcb03-5847-4059-927f-e73e67073f5f"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:55 GMT"
+ "Tue, 13 Jul 2021 00:12:41 GMT"
],
"Content-Length": [
- "504"
+ "503"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1035,26 +1044,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75921ad6-30db-428b-92ea-01ea402f5f03"
+ "96ee60d9-caf8-4a45-aa7a-446e9be5599b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1067,8 +1076,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4c6ba2cf-2b4c-4fda-b2a8-f260d514af27"
+ "9d9f3508-3656-4ffe-a96f-f7d1b7d99102"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1077,19 +1089,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "adb37c53-59ae-4ec8-a354-8923747d3e67"
+ "82e69446-6924-4279-8774-e58fc11e79b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164056Z:adb37c53-59ae-4ec8-a354-8923747d3e67"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001242Z:82e69446-6924-4279-8774-e58fc11e79b4"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:55 GMT"
+ "Tue, 13 Jul 2021 00:12:42 GMT"
],
"Content-Length": [
- "1714"
+ "1712"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1098,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/ps4680\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"ps4680\",\r\n \"properties\": {\r\n \"displayName\": \"ps225\",\r\n \"description\": \"ps7604\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/groups?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c0ed1e6-2155-4323-9148-207a3c970c57"
+ "04446eb0-3df8-4081-9214-84c0e7c4ae79"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1130,8 +1139,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fa0d17b4-5bb2-410e-bd73-1080139d40c1"
+ "6e55f260-6dc0-4af0-8eae-e2448c8755b4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1140,16 +1152,13 @@
"11988"
],
"x-ms-correlation-request-id": [
- "b68a74cb-1810-4a2b-92b9-e245a0fbb81e"
+ "be1fab11-dc31-41c4-8552-25b70989a35e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164057Z:b68a74cb-1810-4a2b-92b9-e245a0fbb81e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001243Z:be1fab11-dc31-41c4-8552-25b70989a35e"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:56 GMT"
+ "Tue, 13 Jul 2021 00:12:42 GMT"
],
"Content-Length": [
"1247"
@@ -1165,22 +1174,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680/users/1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODAvdXNlcnMvMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ea40bd7-cf74-4d0b-8756-c574785456bb"
+ "be4f5b63-37a2-46ef-8bc0-8148e42e9710"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1193,8 +1202,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b23d9788-3bfb-4ec2-af27-1f5a25c675ee"
+ "8d2a1b67-c687-4a2f-b6db-20ead0b38f12"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1203,16 +1215,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "bd2fc3d3-f528-42c8-b31a-ffc8ca57d2f9"
+ "fbd2715c-03d7-41a6-90a9-c683ce00c247"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164057Z:bd2fc3d3-f528-42c8-b31a-ffc8ca57d2f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001243Z:fbd2715c-03d7-41a6-90a9-c683ce00c247"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:56 GMT"
+ "Tue, 13 Jul 2021 00:12:42 GMT"
],
"Expires": [
"-1"
@@ -1225,22 +1234,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"type\": \"external\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps6613\",\r\n \"description\": \"ps5121\",\r\n \"type\": \"external\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f75a32ca-75bc-4b0f-b144-d2ec0a140fb0"
+ "a5897445-b3af-4f5b-8005-00b47f906c60"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1257,13 +1266,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPN8=\""
+ "\"AAAAAAABAAU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "404803d1-4926-4b23-8774-2ba9b9691f5c"
+ "020a5dac-8395-4408-a062-ab0b220d4305"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1272,19 +1284,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "d829c2a7-880f-43ee-9fe9-3420164c0311"
+ "338878cb-e32c-4a45-8c3c-fe7c3b35e43d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164057Z:d829c2a7-880f-43ee-9fe9-3420164c0311"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001243Z:338878cb-e32c-4a45-8c3c-fe7c3b35e43d"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:56 GMT"
+ "Tue, 13 Jul 2021 00:12:43 GMT"
],
"Content-Length": [
- "417"
+ "415"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1293,26 +1302,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps2123\",\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": \"aad:///groups/\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d366f20d-ee70-4f86-af8c-18c56e7e1e09"
+ "a5897445-b3af-4f5b-8005-00b47f906c60"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1323,13 +1332,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPN8=\""
+ "\"AAAAAAABAAU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5dabdbde-45fc-499b-a80e-3435ce4e63b0"
+ "a60b2962-d3c7-494e-911c-25b565c53211"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1338,19 +1350,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "f7d2d5b8-b3a4-40bd-9822-e4596de16ef4"
+ "3d286974-8dc2-4ed2-91c9-b42d5fcad137"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164057Z:f7d2d5b8-b3a4-40bd-9822-e4596de16ef4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001243Z:3d286974-8dc2-4ed2-91c9-b42d5fcad137"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:56 GMT"
+ "Tue, 13 Jul 2021 00:12:43 GMT"
],
"Content-Length": [
- "405"
+ "403"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1359,26 +1368,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"ps2123\",\r\n \"properties\": {\r\n \"displayName\": \"ps4516\",\r\n \"description\": \"ps3726\",\r\n \"builtIn\": false,\r\n \"type\": \"external\",\r\n \"externalId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "667d216c-5947-4125-9cc3-b2201c053373"
+ "a4de88b8-0597-48de-a79d-d67ea20a6d38"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1391,8 +1400,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7b66a210-2339-4858-be25-8a0f63408bdf"
+ "e3dbac89-dc7f-4bb7-bf82-d5a8d39ca6fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1401,16 +1413,13 @@
"11985"
],
"x-ms-correlation-request-id": [
- "18571117-e38b-44ea-9252-655bdcd7df2c"
+ "c7529941-221a-4ae3-a7f3-426c6d420f63"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164058Z:18571117-e38b-44ea-9252-655bdcd7df2c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001244Z:c7529941-221a-4ae3-a7f3-426c6d420f63"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:57 GMT"
+ "Tue, 13 Jul 2021 00:12:44 GMT"
],
"Content-Length": [
"81"
@@ -1426,13 +1435,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps4680?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczQ2ODA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps350?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczM1MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "014a5d47-c599-48b3-8984-9a8578042b9f"
+ "479e03ad-f46b-463e-8a2f-9e00ec47bf5c"
],
"If-Match": [
"*"
@@ -1441,10 +1450,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1457,8 +1466,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "38e388f8-0cfb-4d46-9243-d86983a925f7"
+ "78731f69-7bf9-458c-9a4d-279a596e68c5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1467,16 +1479,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "215db46f-e7d6-49ad-9f78-a69d38d322e1"
+ "ecc7de7f-486d-4299-9492-eb964b68f508"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164058Z:215db46f-e7d6-49ad-9f78-a69d38d322e1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001244Z:ecc7de7f-486d-4299-9492-eb964b68f508"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:57 GMT"
+ "Tue, 13 Jul 2021 00:12:43 GMT"
],
"Expires": [
"-1"
@@ -1489,13 +1498,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps2123?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczIxMjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/groups/ps323?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2dyb3Vwcy9wczMyMz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da8d806a-f3a4-49db-8d7b-d8ee65246786"
+ "95e4e37b-5c66-46d9-ae41-f96c5a98c3dc"
],
"If-Match": [
"*"
@@ -1504,10 +1513,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1520,8 +1529,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ee637c56-c8ed-4bbe-a6d7-db90d7e0d356"
+ "9469d9b4-0872-4797-a29b-2ef05f4ffc37"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1530,16 +1542,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "7e221242-8dd5-42fe-b267-6286d6657fd5"
+ "fd9a7fc0-07b0-4986-9467-fe690e0b3bc0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164058Z:7e221242-8dd5-42fe-b267-6286d6657fd5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001244Z:fd9a7fc0-07b0-4986-9467-fe690e0b3bc0"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:57 GMT"
+ "Tue, 13 Jul 2021 00:12:43 GMT"
],
"Expires": [
"-1"
@@ -1554,14 +1563,14 @@
],
"Names": {
"": [
- "ps4680",
- "ps2123",
- "ps4054",
- "ps3351",
- "ps225",
- "ps7604",
- "ps4516",
- "ps3726"
+ "ps350",
+ "ps323",
+ "ps3090",
+ "ps6658",
+ "ps816",
+ "ps9328",
+ "ps6613",
+ "ps5121"
]
},
"Variables": {
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 7d3665eb36b0..eba5620ce6e1 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"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\": \"ps5232\",\r\n \"clientSecret\": \"ps7442\"\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\": \"ps4174\",\r\n \"clientSecret\": \"ps7883\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95b5f9e7-16de-4cbc-a884-7c555c189c28"
+ "b6b2fbba-be1f-4eaf-ad47-3f608ed4c878"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMo=\""
+ "\"AAAAAAAA/+k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c539b953-8588-4c25-9bb8-814339dc08ba"
+ "73122825-eaa4-42bf-95bd-4fc4d5ccca45"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "cd8ad993-2fc4-43da-9245-816182ac568f"
+ "71619b19-e7a7-46a1-a686-8592cbd6d1f0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164047Z:cd8ad993-2fc4-43da-9245-816182ac568f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001228Z:71619b19-e7a7-46a1-a686-8592cbd6d1f0"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:47 GMT"
+ "Tue, 13 Jul 2021 00:12:27 GMT"
],
"Content-Length": [
"583"
@@ -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\": \"ps5232\",\r\n \"clientSecret\": \"ps7442\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6602845c-587d-48a9-b0df-3ba152da2ce7"
+ "e1f9674d-2c85-4287-8775-4a9766a85d45"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,13 +99,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMo=\""
+ "\"AAAAAAAA/+k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "96476592-b51f-449e-a653-52e1c306cff2"
+ "37b6844e-543c-4a09-a64f-4b942875e136"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +117,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "0cce1e70-29ca-4045-b21b-81f6e5689c12"
+ "08c6d569-9c31-4b13-85e2-6449eade8e5b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164047Z:0cce1e70-29ca-4045-b21b-81f6e5689c12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001228Z:08c6d569-9c31-4b13-85e2-6449eade8e5b"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:47 GMT"
+ "Tue, 13 Jul 2021 00:12:27 GMT"
],
"Content-Length": [
"552"
@@ -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\": \"ps5232\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5a9f58a-0903-4847-840e-11d1d6710203"
+ "6185062b-fd29-42b5-a310-ac77eb884a97"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,13 +165,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMs=\""
+ "\"AAAAAAAA/+o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "28fe4f5f-07e4-4642-9dfa-ee3667c5e00b"
+ "794479aa-09dc-4bff-a899-7dd331bcba0a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,16 +183,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "7f821adc-7ebb-4ee4-af8a-89c05b60b1e5"
+ "f0c82139-c02a-4988-a56b-535579f57452"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:7f821adc-7ebb-4ee4-af8a-89c05b60b1e5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:f0c82139-c02a-4988-a56b-535579f57452"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 GMT"
],
"Content-Length": [
"609"
@@ -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\": \"ps5232\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f709d48b-0154-4c4f-b0a4-c7640b2e1a75"
+ "2e7dc37b-e51c-44ee-9881-6e73b8338b5d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -233,8 +233,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "adb50c89-83df-4a88-9036-0730c6fd3504"
+ "2e5560ed-a84f-4d6e-a30e-8ad051627e6d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +246,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "d49d7b99-6d48-49a7-be2e-e5eba1366b39"
+ "789b34aa-de29-42c9-9fda-131e34206b8e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:d49d7b99-6d48-49a7-be2e-e5eba1366b39"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:789b34aa-de29-42c9-9fda-131e34206b8e"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6557b96b-9fb3-402d-8d12-1f0bd1b50d10"
+ "63112a38-6c1d-4ed6-8c91-bfda26cb0f52"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -296,8 +296,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0ae572b0-49a3-4d6d-8fa5-f51809e58e16"
+ "2cc58cc5-07db-44e5-b612-d8dd4bdf4480"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +309,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "7fa0051e-ea70-4777-9652-a88ae811ea71"
+ "26e30d3a-f9d1-4735-940b-b37dc1814a7a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:7fa0051e-ea70-4777-9652-a88ae811ea71"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:26e30d3a-f9d1-4735-940b-b37dc1814a7a"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41dac2fa-3594-4dc6-9023-94bd12fdd5e4"
+ "84b4f2b1-1737-4bc6-b4c4-807d9b9260df"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMo=\""
+ "\"AAAAAAAA/+k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "534eab47-f5fb-4d60-b76c-7b79147789b0"
+ "a3c4ef51-5a5d-4390-be78-02870e6cc415"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +375,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "177bf4ab-4f7a-4855-ab63-b8ade3b33823"
+ "a9492a7b-f016-4e0d-94e6-6af9e90e9536"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164047Z:177bf4ab-4f7a-4855-ab63-b8ade3b33823"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001229Z:a9492a7b-f016-4e0d-94e6-6af9e90e9536"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:47 GMT"
+ "Tue, 13 Jul 2021 00:12:28 GMT"
],
"Content-Length": [
"25"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps7442\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps7883\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQy9saXN0U2VjcmV0cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3dcdb77-c6f1-4047-8756-c8aeb6edf7dd"
+ "96029c0c-7f21-42fa-8d12-9087afd95bbb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,13 +423,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPMs=\""
+ "\"AAAAAAAA/+o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bee64852-81ca-44a7-adee-adaeeccf0b7b"
+ "163870f0-33eb-43e9-ab28-56a305c1c5d9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +441,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "6aabdfd3-19e9-4506-9aa5-0efa35cc98ac"
+ "6267de33-9fe5-49c4-93f1-d910bb4b933a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:6aabdfd3-19e9-4506-9aa5-0efa35cc98ac"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:6267de33-9fe5-49c4-93f1-d910bb4b933a"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 GMT"
],
"Content-Length": [
"25"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps7442\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps7883\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a8fd0ca-cd9d-4ec8-a53c-1492b73be2bf"
+ "07656e7d-7169-41fb-b48a-e8c47b193a71"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -491,8 +491,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dcad5760-fd65-494b-9e28-7e4a58c4fa79"
+ "05fef648-278d-4f9e-9125-9658c6b57744"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +504,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "57fe3fa0-00cf-4ac9-8ff9-cbe180d7b3d8"
+ "d948596b-7314-4abc-8337-087533332076"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164047Z:57fe3fa0-00cf-4ac9-8ff9-cbe180d7b3d8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001229Z:d948596b-7314-4abc-8337-087533332076"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:47 GMT"
+ "Tue, 13 Jul 2021 00:12:28 GMT"
],
"Content-Length": [
"652"
@@ -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\": \"ps5232\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"profileEditingPolicyName\": \"B2C_1_profileediting\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "904ca949-876b-4a65-9daa-2178b482685b"
+ "6185062b-fd29-42b5-a310-ac77eb884a97"
],
"If-Match": [
"*"
@@ -541,10 +541,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -560,11 +560,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAA/+o=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a59db6f3-30b9-4da4-9074-a43ddfda9e75"
+ "8ae76ca9-4f6f-4f0f-9e3f-af5b30f03960"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,32 +579,35 @@
"1198"
],
"x-ms-correlation-request-id": [
- "f47a327e-44a4-4469-88fd-3dd97907248b"
+ "bc3ba7aa-e8ec-48fb-821e-330c7ca3ea17"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:f47a327e-44a4-4469-88fd-3dd97907248b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:bc3ba7aa-e8ec-48fb-821e-330c7ca3ea17"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 GMT"
+ ],
+ "Content-Length": [
+ "640"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea70ba1a-5a8d-4ebc-a9b5-a7dc740d4c23"
+ "9d306423-22c0-4fd0-b143-6b32f5595fb1"
],
"If-Match": [
"*"
@@ -607,10 +616,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -623,8 +632,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "43be1868-1f47-4a67-8a1d-b378ae58ea3f"
+ "fc306e3b-e6d4-40d5-a3ae-26c7697a4cb1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +645,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "bca1b7f0-d659-430a-b2cf-4b72643a2de3"
+ "1a31171b-773b-4d99-96b3-7aceba37180e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:bca1b7f0-d659-430a-b2cf-4b72643a2de3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:1a31171b-773b-4d99-96b3-7aceba37180e"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 GMT"
],
"Expires": [
"-1"
@@ -655,13 +664,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/AadB2C?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0FhZEIyQz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a0cfdbc-753d-4e3e-b595-b0d28964a5a8"
+ "b32f77e8-5532-4cf0-b21f-a2ae30b7038d"
],
"If-Match": [
"*"
@@ -670,10 +679,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -686,8 +695,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c832cffe-b6a2-4145-b08a-800dd6c2e404"
+ "0494f74e-6579-49e8-ad45-14c20b208141"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +708,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "d7afa06a-167c-4c41-8d9d-0331aa645214"
+ "ebfa5d4c-92ba-49a6-8b12-f0eac0d0ea9e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164048Z:d7afa06a-167c-4c41-8d9d-0331aa645214"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001230Z:ebfa5d4c-92ba-49a6-8b12-f0eac0d0ea9e"
],
"Date": [
- "Tue, 21 Jul 2020 16:40:48 GMT"
+ "Tue, 13 Jul 2021 00:12:29 GMT"
],
"Expires": [
"-1"
@@ -717,8 +726,8 @@
],
"Names": {
"": [
- "ps5232",
- "ps7442"
+ "ps4174",
+ "ps7883"
]
},
"Variables": {
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 1bf0c1b3bfcd..ea13a54e33b1 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps1122\",\r\n \"clientSecret\": \"ps4771\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"ps6025\",\r\n \"clientSecret\": \"ps8940\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db007ae9-4c57-46b2-af7f-26e72749bddd"
+ "477ecaae-6598-442f-82b8-569f2d4c2831"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,13 +33,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPE0=\""
+ "\"AAAAAAAA/1Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e751adad-d4e8-41dc-a1e8-2a9734713186"
+ "617cc2b8-bbc9-4b85-a332-8d62080c2e74"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -48,16 +51,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "7bf11c17-2e22-433b-b6dc-6138dd6b5fed"
+ "b5e64e18-8dd7-4107-963d-7d7f4bf15039"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163640Z:7bf11c17-2e22-433b-b6dc-6138dd6b5fed"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000823Z:b5e64e18-8dd7-4107-963d-7d7f4bf15039"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:39 GMT"
+ "Tue, 13 Jul 2021 00:08:22 GMT"
],
"Content-Length": [
"381"
@@ -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\": \"ps1122\",\r\n \"clientSecret\": \"ps4771\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a78da227-df05-4266-8286-31c52c444f28"
+ "8dbff30a-9c08-4518-876d-d6017f7477e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,13 +99,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPE0=\""
+ "\"AAAAAAAA/1Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1a7a63c5-c2af-4c45-9682-84e9b4c8e234"
+ "c60b22bf-7518-4c6d-bb65-393b250add72"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -114,16 +117,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "39ccd953-5735-4bee-9e57-f2ada35add12"
+ "f5dc3d09-2d21-4bef-8537-76634d284ba8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163641Z:39ccd953-5735-4bee-9e57-f2ada35add12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000824Z:f5dc3d09-2d21-4bef-8537-76634d284ba8"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:40 GMT"
+ "Tue, 13 Jul 2021 00:08:23 GMT"
],
"Content-Length": [
"350"
@@ -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\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84449941-4f4a-40dc-a47e-80460ee38b10"
+ "157592ff-c8e5-4f54-8c4a-ac9161593336"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,13 +165,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPE4=\""
+ "\"AAAAAAAA/1U=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7384e70c-c340-4cbf-9a46-eb20c39c2be8"
+ "d43a383d-735b-4c30-8e84-7b024641863d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -180,16 +183,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "e7fbdc00-eb2b-4bc1-9aa7-5cd341b58c10"
+ "5d4a7548-2a13-4bc9-9cfd-dbbc24424b8e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:e7fbdc00-eb2b-4bc1-9aa7-5cd341b58c10"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000824Z:5d4a7548-2a13-4bc9-9cfd-dbbc24424b8e"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:23 GMT"
],
"Content-Length": [
"350"
@@ -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\": \"ps1122\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64842fe3-2459-45af-af7f-03c5edecf418"
+ "9bb31a8c-917d-49d8-9820-ec4e8c7482b7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -233,8 +233,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d1307c9a-4b68-4561-86ab-25c03bf12030"
+ "52804492-25dc-452a-831c-f28aa20ea6ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,16 +246,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "c5f050b1-3794-4fb0-aed9-571bd8871ff2"
+ "1531c853-ebd4-42f4-9867-abba732b331b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:c5f050b1-3794-4fb0-aed9-571bd8871ff2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000825Z:1531c853-ebd4-42f4-9867-abba732b331b"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:24 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6dff80ce-3074-4abf-9838-984692529da7"
+ "93a8f91b-13c2-4eec-8a8d-bfb2bfaa3140"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -296,8 +296,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0a0cdf03-597e-48ba-8f35-bfb3ba3871bc"
+ "c747b4ec-19c6-47ac-a299-b490398f59e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +309,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "55d59ab5-ab6c-48b6-9617-973ea2fe312d"
+ "6d76f45d-9ed4-4d2a-8abd-a94e2603425d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:55d59ab5-ab6c-48b6-9617-973ea2fe312d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000825Z:6d76f45d-9ed4-4d2a-8abd-a94e2603425d"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:24 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6454070-262c-4bda-9418-040f078d17d6"
+ "e9a05685-ebba-4e42-9595-f0ca93409448"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -357,13 +357,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPE0=\""
+ "\"AAAAAAAA/1Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "394dc85a-bfa1-4e5e-9d0f-679c84109d59"
+ "86e557ec-0b62-4d63-a5bf-16a07b9a6f54"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -372,16 +375,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "8686f08d-d29b-43f5-a3e0-41394fb04dee"
+ "ab373017-342a-44e6-b950-d8b77a46488e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163641Z:8686f08d-d29b-43f5-a3e0-41394fb04dee"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000824Z:ab373017-342a-44e6-b950-d8b77a46488e"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:40 GMT"
+ "Tue, 13 Jul 2021 00:08:23 GMT"
],
"Content-Length": [
"25"
@@ -393,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps4771\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps8940\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6baac71b-3b11-4fd3-950d-61ac6ad597a9"
+ "1b42f8c7-1e6b-4645-8328-263ce14834bd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -423,13 +423,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPE4=\""
+ "\"AAAAAAAA/1U=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2595d0a0-5867-4079-b8a1-88063bcb4665"
+ "812b6d5a-d9ab-4e74-ac43-915b35d2097d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,16 +441,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "6988f4be-554b-4c59-9eda-70c0cba56a38"
+ "dd04b33a-0710-4164-a09c-78b2187b0de1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:6988f4be-554b-4c59-9eda-70c0cba56a38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000824Z:dd04b33a-0710-4164-a09c-78b2187b0de1"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:23 GMT"
],
"Content-Length": [
"25"
@@ -459,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps2526\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps2743\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "861a8c7a-6f34-4f68-8d27-0faf85b190c5"
+ "15107153-3373-419f-b8ba-86f5874ce76c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -491,8 +491,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9deafbbb-8f34-46c9-afe6-5c75ba5b5760"
+ "bcc423d0-1b51-483c-98ba-41206413b169"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -501,16 +504,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f46bf53d-08b6-4d14-be53-4209783dae18"
+ "2694906c-0872-49cd-961e-4ccc702e0525"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163641Z:f46bf53d-08b6-4d14-be53-4209783dae18"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000824Z:2694906c-0872-49cd-961e-4ccc702e0525"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:40 GMT"
+ "Tue, 13 Jul 2021 00:08:23 GMT"
],
"Content-Length": [
"426"
@@ -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\": \"ps1122\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2526\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps2743\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "870385ea-77b6-410b-aaa6-d0de075eab80"
+ "157592ff-c8e5-4f54-8c4a-ac9161593336"
],
"If-Match": [
"*"
@@ -541,10 +541,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -560,11 +560,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAA/1U=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "996f5b65-1b9c-4c44-8af8-085b661f1e05"
+ "02a2db8d-4407-40bd-85d1-6b61d11b6a73"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,32 +579,35 @@
"1198"
],
"x-ms-correlation-request-id": [
- "b1616352-2110-4e1b-980e-7a4f99b53b27"
+ "eae6d7da-dce5-42b3-94e0-c26424ee2a98"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:b1616352-2110-4e1b-980e-7a4f99b53b27"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000824Z:eae6d7da-dce5-42b3-94e0-c26424ee2a98"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:23 GMT"
+ ],
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebbb707f-4dfe-45d0-9b51-2f1e83aa54e8"
+ "12ec994a-12da-4b61-a22d-41bb60754678"
],
"If-Match": [
"*"
@@ -607,10 +616,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -623,8 +632,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8516ded8-7ce5-45a9-97a9-c69065251254"
+ "0fad45c0-3cc1-4912-bc19-159cc427508d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -633,16 +645,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "cb135994-6f57-4b3d-aa8b-3a8cb9d7b67a"
+ "74bcebd8-68cf-4b16-a768-3a0fc587841d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:cb135994-6f57-4b3d-aa8b-3a8cb9d7b67a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000825Z:74bcebd8-68cf-4b16-a768-3a0fc587841d"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:24 GMT"
],
"Expires": [
"-1"
@@ -655,13 +664,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/identityProviders/Facebook?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2lkZW50aXR5UHJvdmlkZXJzL0ZhY2Vib29rP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dc715e90-e74a-4307-a009-949df59ece89"
+ "de588e49-f698-4ea7-ae24-ea0f03f877b8"
],
"If-Match": [
"*"
@@ -670,10 +679,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -686,8 +695,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "06da2aa8-31de-4465-8ebd-cafc2e997a42"
+ "61c9edd6-3832-43ef-9415-23f990297f94"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +708,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "ed623c70-1763-4693-9cc0-fae60a05c76f"
+ "56fdf13f-e44e-43ab-8218-f9e2d8154da9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163642Z:ed623c70-1763-4693-9cc0-fae60a05c76f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T000825Z:56fdf13f-e44e-43ab-8218-f9e2d8154da9"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:42 GMT"
+ "Tue, 13 Jul 2021 00:08:24 GMT"
],
"Expires": [
"-1"
@@ -717,9 +726,9 @@
],
"Names": {
"": [
- "ps1122",
- "ps4771",
- "ps2526"
+ "ps6025",
+ "ps8940",
+ "ps2743"
]
},
"Variables": {
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 8393a67d3258..6b978bda2ef0 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,29 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2857\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"Endpoint=sb://vifedoeventhub.servicebus.windows.net/;SharedAccessKeyName=manage;SharedAccessKey=GQmdXBfPkD/lY7/X1LDAWxDBVszam4GidL+4h0l85TY=;EntityPath=test\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bbf3b8d7-d00f-429c-989d-d2ac6eb015a6"
+ "bd761470-846d-4b6f-93f9-8255745107e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "363"
+ "364"
]
},
"ResponseHeaders": {
@@ -34,34 +33,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPWk=\""
+ "\"AAAAAAABAnQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dedbc3b7-5f45-4d66-b733-85eab5d88eb7"
+ "ab1f9490-841b-4bea-b9b9-70db2a7cec1f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1199"
],
"x-ms-correlation-request-id": [
- "a2d94baa-853d-483f-ab22-7f3cd0d060df"
+ "e3fe7424-7a74-4615-9363-3d3856515b5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164214Z:a2d94baa-853d-483f-ab22-7f3cd0d060df"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004228Z:e3fe7424-7a74-4615-9363-3d3856515b5d"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:14 GMT"
+ "Wed, 14 Jul 2021 00:42:28 GMT"
],
"Content-Length": [
- "526"
+ "527"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -70,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2857\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"isBuffered\": false\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps4560\",\r\n \"isBuffered\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "946083ca-73f5-40f4-bbfa-e377b9ab9eb2"
+ "595b7b1c-aed1-4560-be10-1cd19c71f179"
],
"If-Match": [
"*"
@@ -89,10 +88,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -108,54 +107,63 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAnc=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "69ca2fce-4385-417c-b9b5-3365fe976641"
+ "ac943eb2-b25b-49f0-a5c8-b11be7e7fd51"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1198"
],
"x-ms-correlation-request-id": [
- "19aefcdd-38e3-4e4c-a7d2-06bfeb773928"
+ "1646fd98-a3eb-49c1-93f9-bbc2396e22b7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164215Z:19aefcdd-38e3-4e4c-a7d2-06bfeb773928"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004229Z:1646fd98-a3eb-49c1-93f9-bbc2396e22b7"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:14 GMT"
+ "Wed, 14 Jul 2021 00:42:29 GMT"
+ ],
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4cfee96-fb30-4d2d-bbce-659b13530d63"
+ "595b7b1c-aed1-4560-be10-1cd19c71f179"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -166,34 +174,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPWs=\""
+ "\"AAAAAAABAnc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c2ba7841-d1d6-4ad0-96f5-f65a2575d49d"
+ "f71e06c3-6dd9-4c89-ade6-a8c52f8770ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11989"
],
"x-ms-correlation-request-id": [
- "326bce72-543a-4858-8412-6fa592db1daa"
+ "219fe671-b4b9-4094-8deb-6c98aead66e9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164215Z:326bce72-543a-4858-8412-6fa592db1daa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004229Z:219fe671-b4b9-4094-8deb-6c98aead66e9"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:14 GMT"
+ "Wed, 14 Jul 2021 00:42:29 GMT"
],
"Content-Length": [
- "527"
+ "528"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -202,26 +210,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4db1811e-40de-4f5f-af25-35ba460237b2"
+ "58172da0-49bd-45dc-b1b1-533f67d7e772"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -232,34 +240,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPWs=\""
+ "\"AAAAAAABAnc=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2c53fd65-eef9-4e9f-b8ce-4b7a4143f3fc"
+ "889cc710-001e-460f-9a71-ec3c2bc95934"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11987"
],
"x-ms-correlation-request-id": [
- "8a88332e-99f5-405c-9ed4-69823c6c24ed"
+ "d3268c8c-c9ca-47a1-b017-f0deeaf9ad6d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164216Z:8a88332e-99f5-405c-9ed4-69823c6c24ed"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004230Z:d3268c8c-c9ca-47a1-b017-f0deeaf9ad6d"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:15 GMT"
+ "Wed, 14 Jul 2021 00:42:30 GMT"
],
"Content-Length": [
- "527"
+ "528"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -268,26 +276,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\r\n },\r\n \"isBuffered\": false,\r\n \"resourceId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ecd3527-9ed0-4743-b8ed-350666582d9d"
+ "6cb7e9cd-c618-4d93-a1e4-1dad00e18f65"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,26 +308,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dd02c32b-bb0b-4fab-a2e5-f99a389b3d7d"
+ "46e5a76f-5664-4581-8708-95b3866a51a0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11986"
],
"x-ms-correlation-request-id": [
- "9ae5f774-9cb0-4f64-8804-2b53bc211af5"
+ "ca13838a-dd6a-41fc-bc24-8363da8933fe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164219Z:9ae5f774-9cb0-4f64-8804-2b53bc211af5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004234Z:ca13838a-dd6a-41fc-bc24-8363da8933fe"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:18 GMT"
+ "Wed, 14 Jul 2021 00:42:34 GMT"
],
"Content-Length": [
"82"
@@ -335,22 +343,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2716cf04-f29f-4701-991b-c10b776bef78"
+ "ac554f8c-6b7f-4acb-8183-a01ca156dd27"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -363,29 +371,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d2ffe6bc-95d7-42de-8978-0682ec143ba4"
+ "7c4e4e1c-2058-4a66-9256-fdb77eec418f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11988"
],
"x-ms-correlation-request-id": [
- "f42d59f2-29c7-4539-b9f4-73eff450ff45"
+ "e629daf0-1793-4ca5-a830-f932f9443fea"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164216Z:f42d59f2-29c7-4539-b9f4-73eff450ff45"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004230Z:e629daf0-1793-4ca5-a830-f932f9443fea"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:15 GMT"
+ "Wed, 14 Jul 2021 00:42:30 GMT"
],
"Content-Length": [
- "627"
+ "628"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -394,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/ps2099\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps2099\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"ps2470\",\r\n \"credentials\": {\r\n \"name\": \"powershell\",\r\n \"connectionString\": \"{{Logger-Credentials-5f171ae6a2ca600fe4c29712}}\"\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9053\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"a8481030-6708-4619-a1a2-fd813f8a9773\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebdd984a-13c2-455e-a7e5-00438db19492"
+ "1d51beb8-af72-4100-b846-00e52d775094"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,34 +438,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPXA=\""
+ "\"AAAAAAABAn0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "346859c0-6c3b-411f-8e16-e060579e5499"
+ "176d8772-313c-4c27-9f6b-b5b7baf115f5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1197"
],
"x-ms-correlation-request-id": [
- "71da3038-8a4e-48f2-9a26-a16410b96634"
+ "8625fd64-75f2-406d-94ef-2946782633a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164219Z:71da3038-8a4e-48f2-9a26-a16410b96634"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004233Z:8625fd64-75f2-406d-94ef-2946782633a1"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:18 GMT"
+ "Wed, 14 Jul 2021 00:42:33 GMT"
],
"Content-Length": [
- "501"
+ "506"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -466,17 +474,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"ps10\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"ps9053\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5f171aeba2ca600fe4c29716}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"resourceId\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps2099?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMyMDk5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps7695?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHM3Njk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d30c326-1057-4513-836c-aed3fcdaa732"
+ "c90ad9db-2542-4ab5-b571-887dd1e07bc8"
],
"If-Match": [
"*"
@@ -485,10 +493,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -501,26 +509,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0cc8f6a0-5981-408f-be27-687ee97ad874"
+ "a138696a-9aec-4af6-b45f-a6b8848762da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14999"
],
"x-ms-correlation-request-id": [
- "1e36ad02-cbe8-49cf-90be-08961df3cea0"
+ "d096a8eb-839b-44ad-aa9b-17a5beb59b70"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164219Z:1e36ad02-cbe8-49cf-90be-08961df3cea0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004234Z:d096a8eb-839b-44ad-aa9b-17a5beb59b70"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:18 GMT"
+ "Wed, 14 Jul 2021 00:42:34 GMT"
],
"Expires": [
"-1"
@@ -533,13 +541,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f420dd10-00fd-4cbe-ac5a-59881ba1616e"
+ "82a73cc7-9b24-4491-9741-6b407457b528"
],
"If-Match": [
"*"
@@ -548,10 +556,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -564,26 +572,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "00a72db7-6c6e-4ff1-ac47-6fc9ef13935f"
+ "ff3a1210-5c25-453a-8dc3-5f66993afefd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14995"
+ "14998"
],
"x-ms-correlation-request-id": [
- "68913cdb-166a-445c-abd2-64cc1fd4f29d"
+ "62987fbc-36c0-46db-9e37-2bc8c037a900"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164219Z:68913cdb-166a-445c-abd2-64cc1fd4f29d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004235Z:62987fbc-36c0-46db-9e37-2bc8c037a900"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:19 GMT"
+ "Wed, 14 Jul 2021 00:42:35 GMT"
],
"Expires": [
"-1"
@@ -596,22 +604,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps10?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/loggers/ps1995?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2xvZ2dlcnMvcHMxOTk1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e39f2f81-e3bc-4438-b729-8849a4054a6e"
+ "86b4ce2e-9b33-4efc-8a51-947027548372"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -624,26 +632,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e20e6a33-26ee-42ff-9c77-123ca70ef5d1"
+ "be64b200-51f3-48ff-bfec-3960a1efce0a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11985"
],
"x-ms-correlation-request-id": [
- "afd8b5c1-9298-4bf3-a18e-82fb90bbc030"
+ "7e337b95-bd6e-4af2-ba00-9656407f8bee"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164219Z:afd8b5c1-9298-4bf3-a18e-82fb90bbc030"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004235Z:7e337b95-bd6e-4af2-ba00-9656407f8bee"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:19 GMT"
+ "Wed, 14 Jul 2021 00:42:35 GMT"
],
"Content-Length": [
"82"
@@ -659,22 +667,22 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc8e6061-30c6-4969-a5cc-e92ff1ccd5d1"
+ "089371bb-7dd3-47d3-84ff-73abc02a4f9b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,29 +695,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d4d7c0dc-d716-4244-ba22-cdff788dffb2"
+ "752df368-d48a-45dd-a2bf-7077d8304fbb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11984"
],
"x-ms-correlation-request-id": [
- "66dd85ea-39b1-4378-9b39-47a6d3270470"
+ "c74a6dd0-ee91-4c8b-b8ee-77d05919cd1f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164220Z:66dd85ea-39b1-4378-9b39-47a6d3270470"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004235Z:c74a6dd0-ee91-4c8b-b8ee-77d05919cd1f"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:19 GMT"
+ "Wed, 14 Jul 2021 00:42:35 GMT"
],
"Content-Length": [
- "973"
+ "506"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -718,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/5f171ae6a2ca600fe4c29711\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171ae6a2ca600fe4c29711\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171ae6a2ca600fe4c29712\",\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/5f171aeba2ca600fe4c29715\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"5f171aeba2ca600fe4c29715\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5f171aeba2ca600fe4c29716\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171ae6a2ca600fe4c29711?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWU2YTJjYTYwMGZlNGMyOTcxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/60ee32f4a2ca601290f0cc2e?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzYwZWUzMmY0YTJjYTYwMTI5MGYwY2MyZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "855adfb8-0f87-4eb1-b4e1-61906bc81d71"
+ "39e66576-c04f-4c44-914d-f36b3c640955"
],
"If-Match": [
"*"
@@ -737,10 +745,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -753,89 +761,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "1d242caf-a968-446b-a9cf-f984b3609c1a"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14994"
- ],
- "x-ms-correlation-request-id": [
- "74bab8d7-e731-466c-9a94-4ab2fad07c22"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200721T164220Z:74bab8d7-e731-466c-9a94-4ab2fad07c22"
- ],
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Tue, 21 Jul 2020 16:42:19 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/5f171aeba2ca600fe4c29715?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzLzVmMTcxYWViYTJjYTYwMGZlNGMyOTcxNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8c37fe9b-ed22-4cb5-8dbd-9ae10c1e2c94"
- ],
- "If-Match": [
- "*"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.27817.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
"x-ms-request-id": [
- "4be6222b-268f-409a-8d2c-f7940ca86fa9"
+ "276cf182-1c13-4efa-939c-010ee96ee874"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14993"
+ "14997"
],
"x-ms-correlation-request-id": [
- "d8e15bef-529f-4a94-be62-aef8d33d3ecd"
+ "8d2ffa3d-982b-48b4-b279-fb3bcf4c7a40"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164220Z:d8e15bef-529f-4a94-be62-aef8d33d3ecd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210714T004235Z:8d2ffa3d-982b-48b4-b279-fb3bcf4c7a40"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:20 GMT"
+ "Wed, 14 Jul 2021 00:42:35 GMT"
],
"Expires": [
"-1"
@@ -850,11 +795,11 @@
],
"Names": {
"": [
- "ps2099",
- "ps10",
- "ps2857",
- "ps2470",
- "ps9053"
+ "ps7695",
+ "ps1995",
+ "ps9214",
+ "ps4560",
+ "ps9115"
]
},
"Variables": {
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 4b2c66fbe27f..197dff7385b9 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,28 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef37f4a9-7aef-4fe0-b415-6a32799263db"
+ "4a779ca3-3491-4f69-b3ee-4a8b5275446f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "237"
+ "238"
]
},
"ResponseHeaders": {
@@ -33,34 +33,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPnI=\""
+ "\"AAAAAAABAgg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "af77b17d-33c3-437f-9e57-2608dc3af8fd"
+ "8fc7b9f4-a8b3-48e8-b0ac-1d5666ce57a0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "f24711d8-e813-47f6-aed9-c1199b7043df"
+ "acacaef8-5b73-49f5-9dd5-f37b48ce9a44"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164733Z:f24711d8-e813-47f6-aed9-c1199b7043df"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001941Z:acacaef8-5b73-49f5-9dd5-f37b48ce9a44"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:33 GMT"
+ "Tue, 13 Jul 2021 00:19:40 GMT"
],
"Content-Length": [
- "512"
+ "513"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e87cf74d-270a-470b-b3c7-25e1b864a4bc"
+ "4a779ca3-3491-4f69-b3ee-4a8b5275446f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -99,34 +99,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPnI=\""
+ "\"AAAAAAABAgg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3ae0ed39-a4bb-4180-9d0f-e2b8bd531766"
+ "d6a26ac0-4afd-4acc-929e-02b7b4327ed5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11991"
],
"x-ms-correlation-request-id": [
- "55737691-948b-424e-88e2-f16cc89b0c23"
+ "db3c6835-5eb1-4ca7-93ae-c63ac89c40f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164733Z:55737691-948b-424e-88e2-f16cc89b0c23"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001941Z:db3c6835-5eb1-4ca7-93ae-c63ac89c40f6"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:33 GMT"
+ "Tue, 13 Jul 2021 00:19:40 GMT"
],
"Content-Length": [
- "512"
+ "513"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a03fa26-36c1-4198-8f70-35bca5e561d5"
+ "df94e2a7-4b77-43d1-9160-da7c3e5da960"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -165,34 +165,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPnI=\""
+ "\"AAAAAAABAgg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "20e5f4f8-a09d-4901-a125-cee501bce9bf"
+ "da32f50a-e79d-4c3a-8eec-9692f7f28105"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11989"
],
"x-ms-correlation-request-id": [
- "2452d072-315c-4fbb-bf12-5326ecd19613"
+ "9640000f-c127-43e0-8c6e-26d00e55fc45"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164734Z:2452d072-315c-4fbb-bf12-5326ecd19613"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001942Z:9640000f-c127-43e0-8c6e-26d00e55fc45"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:33 GMT"
+ "Tue, 13 Jul 2021 00:19:41 GMT"
],
"Content-Length": [
- "512"
+ "513"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f22ceb8-a53b-48fc-a630-18723efa7dc8"
+ "4634f2c0-a9bf-4d23-a464-292d9d8de763"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -231,34 +231,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPoc=\""
+ "\"AAAAAAABAiU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b2628fbd-16d4-473a-b10a-5e0c9c47c0f3"
+ "5f645339-c6f6-4c48-ac98-62f2656cf53a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11985"
],
"x-ms-correlation-request-id": [
- "3c2a648e-ce0b-4462-a391-33b548f98091"
+ "a4b90315-58fa-4e97-afff-85b1f2f112a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164808Z:3c2a648e-ce0b-4462-a391-33b548f98091"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002016Z:a4b90315-58fa-4e97-afff-85b1f2f112a1"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:08 GMT"
+ "Tue, 13 Jul 2021 00:20:15 GMT"
],
"Content-Length": [
- "512"
+ "513"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54212c98-7e4b-4540-88ea-d676c3010954"
+ "32cb10de-938c-4f75-b0cc-61d82676149e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -297,34 +297,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPoc=\""
+ "\"AAAAAAABAiU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "da6ede01-5fa9-49ae-ac57-68f6f86cbc40"
+ "0315244f-b0ae-4cda-9633-16ea30d952e9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11984"
],
"x-ms-correlation-request-id": [
- "7bf7dde9-d7a8-4355-9074-1d507779e97a"
+ "34cfcf5e-af5a-4d01-89a4-1d5e131d535f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164808Z:7bf7dde9-d7a8-4355-9074-1d507779e97a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002016Z:34cfcf5e-af5a-4d01-89a4-1d5e131d535f"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:08 GMT"
+ "Tue, 13 Jul 2021 00:20:15 GMT"
],
"Content-Length": [
- "512"
+ "513"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51f328d3-e9d2-44de-b903-ed7476580503"
+ "011ffed4-f915-4af3-a363-9807327ca9a0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -365,26 +365,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3f250568-a73d-479e-94fd-cb3e4ca91d9b"
+ "7681799b-8795-4c4f-a731-629b6e2b54ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11983"
],
"x-ms-correlation-request-id": [
- "24dd91e1-c856-40ee-b969-d38abc42bdde"
+ "8d80200d-ca50-432f-a8a1-abd9a40a09b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164809Z:24dd91e1-c856-40ee-b969-d38abc42bdde"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002017Z:8d80200d-ca50-432f-a8a1-abd9a40a09b1"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:09 GMT"
+ "Tue, 13 Jul 2021 00:20:16 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/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "708691e6-fbe2-4c94-acb8-977a5ac3f4be"
+ "ae6c2769-1423-44c7-a1ab-0ff5fad8c110"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -428,26 +428,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7818a890-99ac-4437-bc06-208a482e95c1"
+ "9834367f-76ba-4e8c-812e-8aa020758c3c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11982"
],
"x-ms-correlation-request-id": [
- "182a256f-ad97-437f-9a38-a497954c26d5"
+ "b220a65e-b541-46b0-97d5-2cce63e29379"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164809Z:182a256f-ad97-437f-9a38-a497954c26d5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002017Z:b220a65e-b541-46b0-97d5-2cce63e29379"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:09 GMT"
+ "Tue, 13 Jul 2021 00:20:16 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('ps8048',properties/displayName)&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/JGZpbHRlcj1zdWJzdHJpbmdvZigncHM4MDQ4Jyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6d525df-96e8-4a1f-92dc-d3717ada4952"
+ "a62906ab-16fc-4d12-ad96-76e2f2820c27"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -491,29 +491,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ed77e26c-246d-48f4-a418-0c22610b3123"
+ "1ed11667-2e36-4282-8ddf-754c89de1a5f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11990"
],
"x-ms-correlation-request-id": [
- "64a85af7-3377-404c-8bb7-21243d5c2125"
+ "8710c062-4b66-4bf2-8a40-7a7875e8f278"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164733Z:64a85af7-3377-404c-8bb7-21243d5c2125"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001941Z:8710c062-4b66-4bf2-8a40-7a7875e8f278"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:33 GMT"
+ "Tue, 13 Jul 2021 00:19:41 GMT"
],
"Content-Length": [
- "596"
+ "597"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b779053-7834-4e20-b515-ca38161ac936"
+ "70faf1c7-2e10-44eb-a01b-0fce27e74b3c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -554,29 +554,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5e011acb-91df-47ac-babf-19354c03bf14"
+ "17eb1707-ae35-493e-810c-cd6b77d7072b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11988"
],
"x-ms-correlation-request-id": [
- "e92b2ff9-c808-4aa7-b4e4-9ec8335a2356"
+ "1106b8cc-eba5-4062-bf70-df178643cc32"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164734Z:e92b2ff9-c808-4aa7-b4e4-9ec8335a2356"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001942Z:1106b8cc-eba5-4062-bf70-df178643cc32"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:34 GMT"
+ "Tue, 13 Jul 2021 00:19:41 GMT"
],
"Content-Length": [
- "596"
+ "597"
],
"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/ps214\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"ps214\",\r\n \"properties\": {\r\n \"displayName\": \"ps8048\",\r\n \"description\": \"ps1003\",\r\n \"metadataEndpoint\": \"https://login.microsoftonline.com/contoso.onmicrosoft.com/v2.0/.well-known/openid-configuration\",\r\n \"clientId\": \"ps991\"\r\n }\r\n }\r\n ],\r\n \"count\": 1\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "122a9cdd-0e10-4ef3-86ba-226e6072dac9"
+ "2f21bd14-f744-4749-a5bb-685a079c7ca6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -615,13 +615,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPnI=\""
+ "\"AAAAAAABAgg=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2637de32-5039-4ad5-9714-b15693aa046d"
+ "8c391d76-cb95-4e79-839d-64c864b7dd51"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -630,16 +633,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "1c161a1d-6d6c-43d9-ba45-8f750a2e540a"
+ "a9901627-9a81-4ba3-99a7-45dae91f5feb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164734Z:1c161a1d-6d6c-43d9-ba45-8f750a2e540a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001942Z:a9901627-9a81-4ba3-99a7-45dae91f5feb"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:34 GMT"
+ "Tue, 13 Jul 2021 00:19:41 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/ps214/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQvbGlzdFNlY3JldHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af4dd7a2-8f2d-48e3-a58c-3ce1a7dbbba9"
+ "0cab0267-5c23-45ab-b470-f7bb8c32f3c1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -681,13 +681,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPoc=\""
+ "\"AAAAAAABAiU=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "aa7e9760-5e3f-4c69-af03-b1b3b66677cf"
+ "91dfa8d8-58ce-47ba-a558-09eaf3b1c41f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,16 +699,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "f8779db9-23db-4fee-9a8a-2b7071a345d6"
+ "15254abf-5830-4583-8b08-4736ab7343d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164808Z:f8779db9-23db-4fee-9a8a-2b7071a345d6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002016Z:15254abf-5830-4583-8b08-4736ab7343d7"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:08 GMT"
+ "Tue, 13 Jul 2021 00:20:16 GMT"
],
"Content-Length": [
"25"
@@ -717,26 +717,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"clientSecret\": \"ps5046\"\r\n}",
+ "ResponseBody": "{\r\n \"clientSecret\": \"ps5908\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"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": [
- "73ba190c-0c2d-4e9a-b3f9-ba0900038c7f"
+ "814a8b2a-0dbb-428c-ad13-779864401219"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -753,31 +753,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01&asyncId=5f171c26a2ca600fe4c2975c&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fd612285-0f19-424c-b7ec-839717776688"
+ "d4e1acf1-b507-4f51-a8c0-e880ff763f77"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "d5065b7a-c048-42d6-a779-5865233598c5"
+ "adaf2e2d-231c-4dc8-a9b9-93e0be1d32ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164734Z:d5065b7a-c048-42d6-a779-5865233598c5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001942Z:adaf2e2d-231c-4dc8-a9b9-93e0be1d32ba"
],
"Date": [
- "Tue, 21 Jul 2020 16:47:34 GMT"
+ "Tue, 13 Jul 2021 00:19:41 GMT"
],
"Expires": [
"-1"
@@ -790,16 +790,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01&asyncId=5f171c26a2ca600fe4c2975c&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDEmYXN5bmNJZD01ZjE3MWMyNmEyY2E2MDBmZTRjMjk3NWMmYXN5bmNDb2RlPTIwMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "814a8b2a-0dbb-428c-ad13-779864401219"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -810,31 +813,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPnM=\""
+ "\"AAAAAAABAgk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "12e4de5a-f4e8-4bbe-aca2-5992afd3b8e2"
+ "2f8de94d-2b44-4eb0-865a-e14b59949249"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11987"
],
"x-ms-correlation-request-id": [
- "6b790212-91bd-4ee0-8b39-39c1f91382b2"
+ "41b770f7-209c-4bf7-b112-1554ed0b0673"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164804Z:6b790212-91bd-4ee0-8b39-39c1f91382b2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002012Z:41b770f7-209c-4bf7-b112-1554ed0b0673"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:04 GMT"
+ "Tue, 13 Jul 2021 00:20:11 GMT"
],
"Content-Length": [
"1381"
@@ -846,26 +849,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps6947?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03607d99-408e-4b3d-9d7b-b09fb9ec2f29"
+ "814a8b2a-0dbb-428c-ad13-779864401219"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -876,31 +879,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPnM=\""
+ "\"AAAAAAABAgk=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ef3980e6-edf3-4552-a5cf-4cc425b12f9e"
+ "3135e419-34f3-43d2-92cb-01343c2f5d1e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11986"
],
"x-ms-correlation-request-id": [
- "7d376350-fe9a-4ee1-9440-1daf0544b84a"
+ "f6580773-7021-4e7f-b3ae-0eabce3e149b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164805Z:7d376350-fe9a-4ee1-9440-1daf0544b84a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002012Z:f6580773-7021-4e7f-b3ae-0eabce3e149b"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:04 GMT"
+ "Tue, 13 Jul 2021 00:20:11 GMT"
],
"Content-Length": [
"1381"
@@ -912,17 +915,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711%3Brev%3D1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExJTNCcmV2JTNEMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"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\": \"ps214\",\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\": \"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "234c4c37-5b50-4ab5-bbd6-483e83c7cab2"
+ "45b02ac4-9058-442b-bc19-67d3f747eb34"
],
"If-Match": [
"*"
@@ -931,10 +934,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -951,31 +954,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPoM=\""
+ "\"AAAAAAABAiA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b06973e7-cae7-459b-b8bc-0b4701f0f1f4"
+ "3d57d2b1-73dd-4318-8a85-312d5f56f4af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "0f247c43-ade3-4432-8fe1-f147629e1450"
+ "6733c043-4381-4aeb-ad10-75e7e9284742"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164807Z:0f247c43-ade3-4432-8fe1-f147629e1450"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002016Z:6733c043-4381-4aeb-ad10-75e7e9284742"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:07 GMT"
+ "Tue, 13 Jul 2021 00:20:15 GMT"
],
"Content-Length": [
"1518"
@@ -987,17 +990,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"ps7711\",\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\": \"ps214\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5046\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"ps5908\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "011b5086-3364-4e04-884b-d5e70c405f8e"
+ "4634f2c0-a9bf-4d23-a464-292d9d8de763"
],
"If-Match": [
"*"
@@ -1006,10 +1009,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1025,45 +1028,54 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAiU=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6318700a-08ab-4a32-a6cd-9ef8c6214a0e"
+ "50dedf92-13e8-46f6-9828-df07244b025a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1194"
],
"x-ms-correlation-request-id": [
- "e0e18dff-b2cf-4412-b707-a2dfe2b661de"
+ "ea7f2ad8-259e-487e-a169-f2a6321f5696"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164808Z:e0e18dff-b2cf-4412-b707-a2dfe2b661de"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002016Z:ea7f2ad8-259e-487e-a169-f2a6321f5696"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:07 GMT"
+ "Tue, 13 Jul 2021 00:20:15 GMT"
+ ],
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe2c48c2-cf07-470c-9272-8379a30bdc0d"
+ "ea687715-314e-43f8-9cc5-b084520b3cd6"
],
"If-Match": [
"*"
@@ -1072,10 +1084,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1088,8 +1100,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0dfd68e7-ac4b-49be-9429-125db1292dc3"
+ "226a405e-d1c6-45ce-879f-f8242fffb9ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1098,16 +1113,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "38739df0-78d7-45f5-bf74-d7f170dde856"
+ "63854f4b-29be-40fe-80e3-de8f117a9bfd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164808Z:38739df0-78d7-45f5-bf74-d7f170dde856"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002017Z:63854f4b-29be-40fe-80e3-de8f117a9bfd"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:08 GMT"
+ "Tue, 13 Jul 2021 00:20:16 GMT"
],
"Expires": [
"-1"
@@ -1120,13 +1132,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/ps7711?deleteRevisions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvcHM3NzExP2RlbGV0ZVJldmlzaW9ucz10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d87d97ef-3945-49ef-b879-c8b58e873586"
+ "5819bf13-7829-4abb-8478-67ff816fa046"
],
"If-Match": [
"*"
@@ -1135,10 +1147,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1151,8 +1163,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1d9a9076-ca95-4260-8894-53c7aaae644c"
+ "d4e52a15-e420-4a0a-ab64-0c923080248b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1161,16 +1176,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "64bf4388-d251-4c84-b9c3-54cc19a575a8"
+ "5fa5ba48-894a-4815-83c5-fbc02c70d29f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164809Z:64bf4388-d251-4c84-b9c3-54cc19a575a8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002017Z:5fa5ba48-894a-4815-83c5-fbc02c70d29f"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:09 GMT"
+ "Tue, 13 Jul 2021 00:20:16 GMT"
],
"Expires": [
"-1"
@@ -1180,13 +1192,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71022dd2-14ca-40bd-8c6e-cf062cb3fec3"
+ "30779279-6c12-45b5-93e5-4e19d8d0b937"
],
"If-Match": [
"*"
@@ -1195,10 +1207,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1211,8 +1223,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "be73a1ce-e138-4a85-b3ed-e8921df6c2e5"
+ "c28fe76d-b8b1-45d7-afa1-1a324aa8c39c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1221,16 +1236,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "292978a5-be48-4f0b-886e-b2ee93a4339c"
+ "4d02c4ee-3075-4665-9edc-565d8328c1ab"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164809Z:292978a5-be48-4f0b-886e-b2ee93a4339c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002017Z:4d02c4ee-3075-4665-9edc-565d8328c1ab"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:08 GMT"
+ "Tue, 13 Jul 2021 00:20:16 GMT"
],
"Expires": [
"-1"
@@ -1243,13 +1255,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps214?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMyMTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/openidConnectProviders/ps380?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL29wZW5pZENvbm5lY3RQcm92aWRlcnMvcHMzODA/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca606590-4a08-43fd-88ee-5ca902be2c18"
+ "66251535-36fe-423d-801f-af04eaece83f"
],
"If-Match": [
"*"
@@ -1258,10 +1270,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1274,8 +1286,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9ec0cfa1-28cc-4b48-9739-1825c5eb1401"
+ "1e617ea9-7851-4d77-aa8c-40164da170bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1284,16 +1299,13 @@
"14996"
],
"x-ms-correlation-request-id": [
- "b392a62c-1c53-42f3-a86e-cfce743ff0c1"
+ "c112413f-65b6-463b-9118-3dd7c2b71719"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164809Z:b392a62c-1c53-42f3-a86e-cfce743ff0c1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T002017Z:c112413f-65b6-463b-9118-3dd7c2b71719"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:09 GMT"
+ "Tue, 13 Jul 2021 00:20:16 GMT"
],
"Expires": [
"-1"
@@ -1305,12 +1317,12 @@
],
"Names": {
"": [
- "ps214",
- "ps7711",
- "ps8048",
- "ps991",
- "ps1003",
- "ps5046"
+ "ps380",
+ "ps6947",
+ "ps8650",
+ "ps9891",
+ "ps1765",
+ "ps5908"
]
},
"Variables": {
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 3ed1d213e2be..05da3710a8b5 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/JGZpbHRlcj1wcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lJTIwZXElMjAnRWNobyUyMEFQSScmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "952a4f0a-56ac-4edb-9ca6-29338902648d"
+ "ac5d5234-8085-4430-828f-2172c190c63e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,26 +29,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7264b6b7-b403-45a2-a6d8-3a40c2f4929b"
+ "137d70b9-51f8-4f9c-a68c-ae834a3a2111"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11999"
],
"x-ms-correlation-request-id": [
- "2c24647c-0259-4b48-9a15-e4645a27ee88"
+ "51ef653a-2548-4bf2-9759-4c8925049ce9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164202Z:2c24647c-0259-4b48-9a15-e4645a27ee88"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001409Z:51ef653a-2548-4bf2-9759-4c8925049ce9"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:02 GMT"
+ "Tue, 13 Jul 2021 00:14:09 GMT"
],
"Content-Length": [
"729"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1cfeca14-bb8c-46b6-a7e0-c0519a5ef6f7"
+ "5d4a3dbc-721a-4b75-963c-6a119731a979"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -92,29 +92,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c4dbf2df-de59-43d4-b44e-99537248f8e1"
+ "21177d39-4262-4a40-8a35-2dc28d827d54"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11998"
],
"x-ms-correlation-request-id": [
- "296b6985-87d4-40b8-a69d-6024960055d7"
+ "63e2dab1-5595-4819-bbb7-c51328157b38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164202Z:296b6985-87d4-40b8-a69d-6024960055d7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001409Z:63e2dab1-5595-4819-bbb7-c51328157b38"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:02 GMT"
+ "Tue, 13 Jul 2021 00:14:09 GMT"
],
"Content-Length": [
- "7423"
+ "7816"
],
"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 \"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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fe5ecf7-246f-43a7-af8c-352b82b40e05"
+ "f590fca4-8632-48af-99f3-f1ece3d8d424"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -153,31 +153,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPJA=\""
+ "\"AAAAAAAA/5o=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fd97c7e2-f891-4de1-82b1-499df65279ab"
+ "aa405bf2-805e-4a93-b27a-8e95b396ca76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11997"
],
"x-ms-correlation-request-id": [
- "214985f1-7ac1-4676-866d-7c3ca6adb3c6"
+ "27646565-8698-4731-a55a-8c0bc84f69de"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164203Z:214985f1-7ac1-4676-866d-7c3ca6adb3c6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001411Z:27646565-8698-4731-a55a-8c0bc84f69de"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:03 GMT"
+ "Tue, 13 Jul 2021 00:14:10 GMT"
],
"Content-Length": [
"1269"
@@ -193,22 +193,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/modify-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9tb2RpZnktcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d3b94ba-eb26-43be-9001-674d041b9d99"
+ "a3b209b0-9726-476b-81e0-d4a0a7bdbbd3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -224,26 +224,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "31562778-119b-4fcb-a2cd-7707cdf3e651"
+ "9c76b0bd-47f5-4d02-a4fd-0a9729fb7c7a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11996"
],
"x-ms-correlation-request-id": [
- "6d8e297a-4d00-474c-8af0-12fe7bd8e0a0"
+ "f69c1d71-885a-44d5-9388-1450f9b34baf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164203Z:6d8e297a-4d00-474c-8af0-12fe7bd8e0a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001411Z:f69c1d71-885a-44d5-9388-1450f9b34baf"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:03 GMT"
+ "Tue, 13 Jul 2021 00:14:11 GMT"
],
"Content-Length": [
"892"
@@ -259,22 +259,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/remove-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZW1vdmUtcmVzb3VyY2U/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8bf56f55-1574-4802-a238-12bbf747977a"
+ "76e26efc-8181-4c10-9681-08fb9623e4bb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -290,26 +290,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "793064f0-3d61-4a22-919d-b3ff2817aa9c"
+ "bb8a0ab2-7392-4d01-86c7-e877257f9ddb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11995"
],
"x-ms-correlation-request-id": [
- "966977e2-6d73-4cb2-b931-8a9deed08bf3"
+ "11954b36-7065-4a7d-b288-2a4c303c14a7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164203Z:966977e2-6d73-4cb2-b931-8a9deed08bf3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001411Z:11954b36-7065-4a7d-b288-2a4c303c14a7"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:03 GMT"
+ "Tue, 13 Jul 2021 00:14:11 GMT"
],
"Content-Length": [
"902"
@@ -325,22 +325,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1oZWFkZXItb25seT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7306b9d4-62a5-48d2-8887-49e34c45a161"
+ "4d321d3c-39aa-4025-ad36-bc6bd0282791"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -356,26 +356,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "558d67fe-05a5-4cd7-b006-c744cb3d106d"
+ "93c7dae4-b07a-461d-9ea9-0e4cd3f194bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11994"
],
"x-ms-correlation-request-id": [
- "b1aee6d6-b2ce-41e4-9f69-3266a454738b"
+ "5fd33ed2-fdb6-4291-a3b9-47e644f7af98"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164203Z:b1aee6d6-b2ce-41e4-9f69-3266a454738b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001411Z:5fd33ed2-fdb6-4291-a3b9-47e644f7af98"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:03 GMT"
+ "Tue, 13 Jul 2021 00:14:11 GMT"
],
"Content-Length": [
"897"
@@ -391,22 +391,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/retrieve-resource?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1yZXNvdXJjZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c7506c4-69c6-47ff-8b12-6a31bed9b7f2"
+ "c863a32b-ee25-42c4-ad93-9f63b188d7cf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -422,26 +422,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "90a10ff4-222d-4163-8fed-1d0480fad4d5"
+ "ff2c9908-8e69-4828-a440-f17382d51fc3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11993"
],
"x-ms-correlation-request-id": [
- "ee27a150-aa02-488d-9c15-fcc4398cbdb4"
+ "9ef70c6b-299c-4872-83b9-f6200c1875a4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164204Z:ee27a150-aa02-488d-9c15-fcc4398cbdb4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001411Z:9ef70c6b-299c-4872-83b9-f6200c1875a4"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:03 GMT"
+ "Tue, 13 Jul 2021 00:14:11 GMT"
],
"Content-Length": [
"1476"
@@ -457,22 +457,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9yZXRyaWV2ZS1yZXNvdXJjZS1jYWNoZWQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a6b9e32-c1a1-4e0b-8c32-5bdc7af09381"
+ "1e9be6dd-5c69-4cbe-b1e8-c7f8db967a8c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -488,26 +488,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e4ddfa40-08f5-434f-9041-a27bf75b9119"
+ "bf1c4c9f-84bb-4f04-9d6e-d36a8a596753"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11992"
],
"x-ms-correlation-request-id": [
- "025a0129-1bc7-4299-8bca-912a95582af6"
+ "65c0c33d-269f-46cd-a2a2-6af55506b4cc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164204Z:025a0129-1bc7-4299-8bca-912a95582af6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001411Z:65c0c33d-269f-46cd-a2a2-6af55506b4cc"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:03 GMT"
+ "Tue, 13 Jul 2021 00:14:11 GMT"
],
"Content-Length": [
"1553"
@@ -523,28 +523,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"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\": \"ps6872\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2149\",\r\n \"description\": \"ps9272\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6452\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6452\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8901\",\r\n \"description\": \"ps9433\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4132\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4132\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7193\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5168\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1997\",\r\n \"sample\": \"ps1402\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps2519\",\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 },\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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8118a9ac-ca59-43ed-9f7a-0d5dcdef15d6"
+ "803bdafe-7475-421b-b131-cd05358dfa1e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1566"
+ "1565"
]
},
"ResponseHeaders": {
@@ -555,34 +555,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPWA=\""
+ "\"AAAAAAABAJ8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dcad0a36-5caf-46f6-8c01-d13a190b0e1b"
+ "5422f416-482c-4e37-91c4-f935e417d2f6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "6fc67636-589c-4cf0-9832-df65a7008de6"
+ "77ed6455-ed17-4b4a-a862-3518e1f03fcc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164205Z:6fc67636-589c-4cf0-9832-df65a7008de6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001414Z:77ed6455-ed17-4b4a-a862-3518e1f03fcc"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:05 GMT"
+ "Tue, 13 Jul 2021 00:14:14 GMT"
],
"Content-Length": [
- "1803"
+ "2120"
],
"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/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"displayName\": \"ps2519\",\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\": \"ps6872\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2149\",\r\n \"description\": \"ps9272\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6452\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6452\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps8901\",\r\n \"description\": \"ps9433\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps4132\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps4132\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7193\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps5168\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps1997\",\r\n \"sample\": \"ps1402\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"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\": \"ps166\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2955\",\r\n \"description\": \"ps2375\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3663\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3663\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps7\",\r\n \"description\": \"ps5913\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7248\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps6566\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4759\",\r\n \"sample\": \"ps1570\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"displayName\": \"ps6140\",\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 },\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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0980ff52-8612-45fb-9aea-3c2b7cf94890"
+ "d095914f-3977-4957-868b-f580e155fce5"
],
"If-Match": [
"*"
@@ -610,16 +610,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1591"
+ "1594"
]
},
"ResponseHeaders": {
@@ -629,54 +629,63 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAKI=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d0482c39-e0fb-454f-8415-41e2bc6d2541"
+ "eec083f7-6df6-417e-98c2-1a813a3f3d00"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "8c2f5c11-8814-4820-bb3a-673bed0058a0"
+ "4ef3391f-af27-40eb-9428-0c69879f9653"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164206Z:8c2f5c11-8814-4820-bb3a-673bed0058a0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001415Z:4ef3391f-af27-40eb-9428-0c69879f9653"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:06 GMT"
+ "Tue, 13 Jul 2021 00:14:15 GMT"
+ ],
+ "Content-Length": [
+ "2151"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc05b3da-6ff7-4d50-b19f-50b82c686cb6"
+ "d095914f-3977-4957-868b-f580e155fce5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -687,34 +696,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPWI=\""
+ "\"AAAAAAABAKI=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ced03f0e-8892-4160-9b45-ee099b181a4b"
+ "4eca8998-1ffb-4b17-b56b-92d7a930746b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11991"
],
"x-ms-correlation-request-id": [
- "03a0fe37-abe5-43f9-9f1f-a20b67432986"
+ "dd97b938-c059-4031-a070-4cd115e6f2b7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164207Z:03a0fe37-abe5-43f9-9f1f-a20b67432986"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001415Z:dd97b938-c059-4031-a070-4cd115e6f2b7"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:06 GMT"
+ "Tue, 13 Jul 2021 00:14:15 GMT"
],
"Content-Length": [
- "1882"
+ "1887"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -723,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/ps438\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"ps438\",\r\n \"properties\": {\r\n \"displayName\": \"ps6140\",\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\": \"ps166\",\r\n \"request\": {\r\n \"description\": \"Create/update resource request modified\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"ps2955\",\r\n \"description\": \"ps2375\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps3663\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps3663\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"ps7\",\r\n \"description\": \"ps5913\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps6860\",\r\n \"required\": true,\r\n \"values\": [\r\n \"ps6860\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"ps7248\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"ps6566\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"ps4759\",\r\n \"sample\": \"ps1570\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96dcddd7-e893-4750-bd09-29a435f2c19c"
+ "da23cae1-16c3-4a71-a989-205437aaee65"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -755,26 +764,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e57ecc49-ba78-492a-8cae-d20869575e35"
+ "bb75fd29-3764-4119-bfed-b37d7bead805"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11990"
],
"x-ms-correlation-request-id": [
- "3f9437b5-bea5-487c-b348-8a087880e298"
+ "38191adf-f31f-4b62-8bc1-4b85a725bb59"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164207Z:3f9437b5-bea5-487c-b348-8a087880e298"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001416Z:38191adf-f31f-4b62-8bc1-4b85a725bb59"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:07 GMT"
+ "Tue, 13 Jul 2021 00:14:16 GMT"
],
"Content-Length": [
"85"
@@ -790,13 +799,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/ps438?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9wczQzOD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b7f803f-35e9-4af9-b1c4-59eca2b67f9c"
+ "6426956f-38d9-49f6-bb70-6821f12d784c"
],
"If-Match": [
"*"
@@ -805,10 +814,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -821,26 +830,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4fe7392e-bf71-419a-b2da-6d3904ee8aa2"
+ "e908e1dc-5377-4b48-82cc-2aed28eaa69f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "dc9fe601-db26-4dde-adb5-166de075c0b9"
+ "0033455f-ebf3-40e5-9bce-fc8831226864"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164207Z:dc9fe601-db26-4dde-adb5-166de075c0b9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001416Z:0033455f-ebf3-40e5-9bce-fc8831226864"
],
"Date": [
- "Tue, 21 Jul 2020 16:42:06 GMT"
+ "Tue, 13 Jul 2021 00:14:16 GMT"
],
"Expires": [
"-1"
@@ -855,33 +864,33 @@
],
"Names": {
"": [
- "ps438",
- "ps2519",
- "ps6872",
- "ps7633",
- "ps8901",
- "ps9433",
- "ps4132",
- "ps2149",
- "ps9272",
- "ps6452",
- "ps7193",
- "ps5168",
- "ps1997",
- "ps1402",
- "ps6140",
- "ps166",
- "ps6777",
- "ps7",
- "ps5913",
- "ps6860",
- "ps2955",
- "ps2375",
- "ps3663",
- "ps7248",
- "ps6566",
- "ps4759",
- "ps1570"
+ "ps8482",
+ "ps2163",
+ "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"
]
},
"Variables": {
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 f9bec0de810f..245fd88031e2 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"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": [
- "6870004a-c4b9-4635-a07f-5d2b38a8f88b"
+ "299d7b5f-8748-4faa-8fc1-ae54238abc7f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -33,31 +33,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPFo=\""
+ "\"AAAAAAAA/1c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fc9fb0a8-74b9-45df-8e73-32628213e6d3"
+ "9de4d8a1-1809-4c40-ada4-875cebeec196"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "86d1784e-3b00-48c5-8e68-be8373e8933b"
+ "dead2a2c-934e-458c-975b-3df532dfc666"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163912Z:86d1784e-3b00-48c5-8e68-be8373e8933b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001041Z:dead2a2c-934e-458c-975b-3df532dfc666"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:12 GMT"
+ "Tue, 13 Jul 2021 00:10:41 GMT"
],
"Content-Length": [
"890"
@@ -73,22 +73,22 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"bbybyxxbbcczc\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf6a1f82-939b-449a-9287-c620632e7698"
+ "324da355-4b0a-4a49-9f0f-a0e79cb660f3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -105,31 +105,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPHg=\""
+ "\"AAAAAAAA/3s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4cc3336d-8ad1-496b-b195-8bf959b3a8fe"
+ "ec9a5fca-01ac-4b40-b24d-e52f2d4d3e32"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1194"
],
"x-ms-correlation-request-id": [
- "e64f9678-55e7-41d5-9084-62b912849a86"
+ "62cc959c-d993-4dce-8970-7967c6293e3b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163919Z:e64f9678-55e7-41d5-9084-62b912849a86"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:62cc959c-d993-4dce-8970-7967c6293e3b"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:19 GMT"
+ "Tue, 13 Jul 2021 00:10:47 GMT"
],
"Content-Length": [
"890"
@@ -145,22 +145,22 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "052c8ed7-b665-4c67-891d-d1cccdcfe854"
+ "06b24505-4044-478d-93ac-2b1c297a9adb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -171,31 +171,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPFo=\""
+ "\"AAAAAAAA/1c=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e71a79c8-b4d5-4111-8251-8b1616115637"
+ "ad35f46d-d9e9-4229-8a6d-507b89862df5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11998"
],
"x-ms-correlation-request-id": [
- "4cf937af-5e5e-4fbe-8b1a-9e8088b8acad"
+ "20605369-8aed-4c63-bc99-19b98e0b259d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163912Z:4cf937af-5e5e-4fbe-8b1a-9e8088b8acad"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001041Z:20605369-8aed-4c63-bc99-19b98e0b259d"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:12 GMT"
+ "Tue, 13 Jul 2021 00:10:41 GMT"
],
"Content-Length": [
"890"
@@ -211,22 +211,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "328c3ae4-6f7d-4d66-ae41-99ed12169734"
+ "b37e2ef3-ca24-4e67-81f8-100aefd2bbdc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -239,26 +239,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a91d2fd9-68c7-44c3-83d1-771705c1e9c6"
+ "37a10053-228e-434d-bc6f-9b3c0b42a370"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11997"
],
"x-ms-correlation-request-id": [
- "3dbb2675-a05b-4913-8148-93b321c6f861"
+ "61e37c6e-cf82-4b84-82d4-a88f4a8a4b3f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163913Z:3dbb2675-a05b-4913-8148-93b321c6f861"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001042Z:61e37c6e-cf82-4b84-82d4-a88f4a8a4b3f"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:13 GMT"
+ "Tue, 13 Jul 2021 00:10:42 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56fd3a1b-01f8-4a0d-9238-9ec88f11edd5"
+ "62998a98-76fb-425c-9099-696722fdd725"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -300,31 +300,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPHg=\""
+ "\"AAAAAAAA/3s=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1135f5bc-f389-4bb3-a341-b8c6675496a0"
+ "d4110279-3797-4eff-9dfc-02bd62be6d9e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11986"
],
"x-ms-correlation-request-id": [
- "1fbadd3f-2591-4f19-9033-708a0e2dbd52"
+ "78f6fee5-3eb8-4204-9430-97ee62dbb705"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163919Z:1fbadd3f-2591-4f19-9033-708a0e2dbd52"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:78f6fee5-3eb8-4204-9430-97ee62dbb705"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:19 GMT"
+ "Tue, 13 Jul 2021 00:10:47 GMT"
],
"Content-Length": [
"890"
@@ -340,22 +340,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?format=xml&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9mb3JtYXQ9eG1sJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "61066a41-3f47-4c49-85ac-f39cef3c633d"
+ "32802a01-e2f2-4a6a-8a8d-4a7709d5014d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -368,26 +368,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "499bc741-1278-4478-8054-c0210d838c27"
+ "a722d55b-f877-4db3-b105-2bacbe27d6d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11985"
],
"x-ms-correlation-request-id": [
- "3d98c302-a18a-4787-a30c-6bf8fe2e9c88"
+ "af082d17-81be-484f-b2af-308f03f5913b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163920Z:3d98c302-a18a-4787-a30c-6bf8fe2e9c88"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:af082d17-81be-484f-b2af-308f03f5913b"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:19 GMT"
+ "Tue, 13 Jul 2021 00:10:48 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbcc52ac-66ad-40ff-bfb8-b203a95aa579"
+ "5b7e9663-a860-4774-9c6f-d7c295a121ac"
],
"If-Match": [
"*"
@@ -418,10 +418,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -434,26 +434,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f5d9e1ba-b4bd-4a33-bc4d-ddd021e2b4f7"
+ "ef92ced3-c13f-4ce4-b827-f778d849e572"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "2c32f88f-33d4-482b-898d-b68debecb077"
+ "e907e71e-e307-40f8-bff1-878214f0d3d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163913Z:2c32f88f-33d4-482b-898d-b68debecb077"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001042Z:e907e71e-e307-40f8-bff1-878214f0d3d1"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:12 GMT"
+ "Tue, 13 Jul 2021 00:10:41 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/policies/policy?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3BvbGljaWVzL3BvbGljeT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81f57e02-82ee-4bce-8143-241f62a7e3b2"
+ "c65cfd9e-5a13-4bee-9837-c4f846d62601"
],
"If-Match": [
"*"
@@ -481,10 +481,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -497,26 +497,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0723166a-a3d5-4e3e-8420-8c5a5432b05a"
+ "6f679fd6-abeb-4ada-9b74-03570a8b502f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14993"
+ "14995"
],
"x-ms-correlation-request-id": [
- "b7eef759-80c9-439c-ab3a-11ff1497f175"
+ "6bf70af2-e113-4c1c-877a-e828e057d1d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163919Z:b7eef759-80c9-439c-ab3a-11ff1497f175"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:6bf70af2-e113-4c1c-877a-e828e057d1d1"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:19 GMT"
+ "Tue, 13 Jul 2021 00:10:47 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b79f0c3d-407a-4210-8141-2bb86d4211e9"
+ "04b6b428-d1fe-4f7c-81a6-718693444d36"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -557,26 +557,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c658d954-eafe-4d6c-858d-692fda7a0209"
+ "b8778c83-6bc8-4ae6-a36e-f533b555b47c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11996"
],
"x-ms-correlation-request-id": [
- "10de509d-5602-43b3-93bc-c65170ff4129"
+ "0c499329-62d3-4e6a-aed0-a5a8eed54027"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163913Z:10de509d-5602-43b3-93bc-c65170ff4129"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001042Z:0c499329-62d3-4e6a-aed0-a5a8eed54027"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:13 GMT"
+ "Tue, 13 Jul 2021 00:10:42 GMT"
],
"Content-Length": [
"670"
@@ -592,22 +592,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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ1VubGltaXRlZCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5fdc56ff-94c9-4577-bc9c-b804428f6a31"
+ "340d98f6-91ba-44ec-8ecd-89058f93155c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -620,26 +620,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "dfd1fd87-b788-4617-9a03-dde14484e424"
+ "441a2bdf-6146-4a6f-8f70-8110095d5c07"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11984"
],
"x-ms-correlation-request-id": [
- "6ddd58f8-0cd3-477b-8efa-63ecd5a00f20"
+ "ae9c6036-e60f-4789-ae93-f40439d4fbb1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163920Z:6ddd58f8-0cd3-477b-8efa-63ecd5a00f20"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:ae9c6036-e60f-4789-ae93-f40439d4fbb1"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:20 GMT"
+ "Tue, 13 Jul 2021 00:10:48 GMT"
],
"Content-Length": [
"670"
@@ -655,13 +655,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"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": [
- "dea2335b-b1df-4708-abf5-f9059c013528"
+ "6ed8b554-e69a-4524-a5ff-b79662a48d6d"
],
"If-Match": [
"*"
@@ -670,10 +670,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -690,31 +690,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPGE=\""
+ "\"AAAAAAAA/2A=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c0d9d1c8-8c2a-402e-b964-e1b3a83d19ed"
+ "05fe996f-036f-4c92-8d40-fd0757b6978f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "846f3906-490e-45d7-98ad-4bb2744e5349"
+ "2777c4df-fa4a-4768-bed8-c8396df8dbfc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163914Z:846f3906-490e-45d7-98ad-4bb2744e5349"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001043Z:2777c4df-fa4a-4768-bed8-c8396df8dbfc"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:14 GMT"
+ "Tue, 13 Jul 2021 00:10:43 GMT"
],
"Content-Length": [
"578"
@@ -730,13 +730,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0649d75b-a3a9-4a8c-850f-c204c172344d"
+ "0cd5e56d-6b4b-4727-aab8-5c3778202c0a"
],
"If-Match": [
"*"
@@ -745,10 +745,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -765,31 +765,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPH8=\""
+ "\"AAAAAAAA/4Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cf3e18df-5763-4e6c-b676-9023d21ea5af"
+ "c2391fca-fe03-4a38-a9a0-e9846d4fdc76"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1193"
],
"x-ms-correlation-request-id": [
- "cb58bf16-3d91-476c-b74a-85b85418165c"
+ "0ec715b7-3ad0-4f81-b415-e2726a81e868"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163920Z:cb58bf16-3d91-476c-b74a-85b85418165c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:0ec715b7-3ad0-4f81-b415-e2726a81e868"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:20 GMT"
+ "Tue, 13 Jul 2021 00:10:48 GMT"
],
"Content-Length": [
"578"
@@ -805,22 +805,22 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb455f06-e52e-4ae9-ab1c-89a9b21ea0b2"
+ "031215a9-8913-4fcb-bd25-ff41917ee694"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -831,31 +831,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPGE=\""
+ "\"AAAAAAAA/2A=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "57f9ccb3-41ca-4e06-a9d2-14d5d751f610"
+ "b85fa485-3244-42e8-b4b2-8da2ae23b8b6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11995"
],
"x-ms-correlation-request-id": [
- "0ec2f7ad-bf0a-42eb-a082-3f180e793540"
+ "e51d9c56-d122-4b3d-a4a0-694141664626"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163915Z:0ec2f7ad-bf0a-42eb-a082-3f180e793540"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001043Z:e51d9c56-d122-4b3d-a4a0-694141664626"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:14 GMT"
+ "Tue, 13 Jul 2021 00:10:43 GMT"
],
"Content-Length": [
"578"
@@ -871,22 +871,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/unlimited/policies/policy?format=xml&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "433b4eaa-ce6e-48e3-bc0b-26944e565e12"
+ "0d06ebd0-d369-4975-bd48-b6321da209bd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -899,26 +899,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "05eae91a-bb69-457a-ba18-5d6b55914247"
+ "cf9ed848-c7c7-40e2-8cf4-7b9afaa5c182"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11994"
],
"x-ms-correlation-request-id": [
- "5c2a723a-0643-4779-81c0-3f9079689251"
+ "6c285006-cbc4-44ea-a87e-bc91f4d21acb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163915Z:5c2a723a-0643-4779-81c0-3f9079689251"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001044Z:6c285006-cbc4-44ea-a87e-bc91f4d21acb"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:15 GMT"
+ "Tue, 13 Jul 2021 00:10:43 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXhtbCZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c529f451-3b50-45ac-98da-e677f57a2d19"
+ "e347bdb4-2647-4f99-ae05-5f0aa53f5950"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -962,26 +962,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6fa4747a-60e4-4143-a9dc-477300e0ce30"
+ "02d0b768-3103-4f19-9a90-f4191851485c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11982"
],
"x-ms-correlation-request-id": [
- "552af7ad-ee3e-4b40-9399-e5be13c5e338"
+ "24c072a6-55ac-46b4-9b76-a6a901100ac3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163920Z:552af7ad-ee3e-4b40-9399-e5be13c5e338"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:24c072a6-55ac-46b4-9b76-a6a901100ac3"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:20 GMT"
+ "Tue, 13 Jul 2021 00:10:48 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "addabd9e-4d6e-4f73-9f0a-7d410d4a855f"
+ "6a87d12d-0367-4f77-935e-e1d74e9849d3"
],
"If-Match": [
"*"
@@ -1012,10 +1012,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1028,26 +1028,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "882d360a-a507-46d4-ad73-106ea6cf27a6"
+ "a34d5b41-2d7e-406e-8dbe-388d4ab0570e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14998"
],
"x-ms-correlation-request-id": [
- "85f495e0-413e-4d63-af44-697485ad6a99"
+ "3f6d22f9-8384-4632-80e8-3800e2429940"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163915Z:85f495e0-413e-4d63-af44-697485ad6a99"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001043Z:3f6d22f9-8384-4632-80e8-3800e2429940"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:15 GMT"
+ "Tue, 13 Jul 2021 00:10:43 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca9cfeed-4c1c-4c06-923a-33ac0a1a260d"
+ "2463c1fd-6d35-40ae-b0f6-6e171e2b8380"
],
"If-Match": [
"*"
@@ -1075,10 +1075,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1091,26 +1091,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "14770ee5-0c19-4374-87ee-47c745347e26"
+ "05584280-fe28-4a9f-8bbd-6e4d3f6b32ff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14992"
+ "14994"
],
"x-ms-correlation-request-id": [
- "59a76e20-ca62-4900-a867-4b72af4aaff4"
+ "fd0c2667-c28d-4123-81e7-c692fdfaa8e3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163920Z:59a76e20-ca62-4900-a867-4b72af4aaff4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:fd0c2667-c28d-4123-81e7-c692fdfaa8e3"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:20 GMT"
+ "Tue, 13 Jul 2021 00:10:48 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "676b4672-d711-49a9-8ebe-9922efbb195b"
+ "8443eb04-0c21-4e3d-b6b7-bd743012cffb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1151,26 +1151,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b2e1f4a4-d553-4bc7-a41d-53fc3718ad1a"
+ "60605814-397a-4a4b-82ed-afc3b454d69d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11993"
],
"x-ms-correlation-request-id": [
- "72edda8c-003a-4b2c-90a5-bc574a4259d3"
+ "ed7d22c6-a993-4dd3-94e0-5c58bc25dd7c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163915Z:72edda8c-003a-4b2c-90a5-bc574a4259d3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001044Z:ed7d22c6-a993-4dd3-94e0-5c58bc25dd7c"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:15 GMT"
+ "Tue, 13 Jul 2021 00:10:43 GMT"
],
"Content-Length": [
"729"
@@ -1186,22 +1186,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2de330ec-8317-4632-a4b8-2f54070b9c1e"
+ "8474b4f2-d00f-4a92-9e4f-b41f2b08e4ab"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1214,26 +1214,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5fa4809d-dafc-45ad-b65d-02e488258048"
+ "b25d0c5e-7c06-4e64-91e5-bddd544951e6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11990"
],
"x-ms-correlation-request-id": [
- "9b3b9909-d722-41a3-9ab3-66d62d376856"
+ "ea960bb3-9908-457b-8b10-6fc38e1913d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163917Z:9b3b9909-d722-41a3-9ab3-66d62d376856"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001045Z:ea960bb3-9908-457b-8b10-6fc38e1913d4"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:17 GMT"
+ "Tue, 13 Jul 2021 00:10:45 GMT"
],
"Content-Length": [
"729"
@@ -1249,22 +1249,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4de10567-98ef-48fd-9777-036c814fc928"
+ "2a316f74-4ca3-4590-a7c1-f2fa065fb5a2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1277,26 +1277,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2645e4bb-437f-44d0-88d5-369463766cfc"
+ "dd811301-7df1-4fbc-8eac-ccef89d443de"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11981"
],
"x-ms-correlation-request-id": [
- "b423324a-8e9a-43d0-90d8-4f778707cd25"
+ "095090da-3e0f-4834-8efc-a9afc33cc726"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163921Z:b423324a-8e9a-43d0-90d8-4f778707cd25"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:095090da-3e0f-4834-8efc-a9afc33cc726"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:20 GMT"
+ "Tue, 13 Jul 2021 00:10:48 GMT"
],
"Content-Length": [
"729"
@@ -1312,22 +1312,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d548755b-e4f6-4733-bdde-357f98914780"
+ "55be5509-140f-46d0-9877-ca7a7c3c021f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1340,26 +1340,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ce8c9f7c-314e-43d3-ab2d-249ab195cbff"
+ "f7b7df85-0fb4-4530-81aa-65030df0ec3d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11978"
],
"x-ms-correlation-request-id": [
- "e7c1a352-319f-4ca0-aaaf-c268d5f67763"
+ "b99d1ca1-a514-4695-abe0-42d62d99294b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163921Z:e7c1a352-319f-4ca0-aaaf-c268d5f67763"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:b99d1ca1-a514-4695-abe0-42d62d99294b"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:21 GMT"
+ "Tue, 13 Jul 2021 00:10:49 GMT"
],
"Content-Length": [
"729"
@@ -1375,13 +1375,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "4f295d0f-be80-41dd-91c4-53b05e5abc2f"
+ "422e61d8-68a7-4848-bf07-ede1813b80da"
],
"If-Match": [
"*"
@@ -1390,10 +1390,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1410,31 +1410,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPGk=\""
+ "\"AAAAAAAA/2k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8b745a78-fbe0-4d09-831e-34305ffad025"
+ "f7f4a0f2-8ea5-4cf7-b1ca-1105f0f22ff7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "ee3b50c8-b3c4-4703-a22f-9ff57102ff64"
+ "f06ce2a5-639b-4e51-b8fb-e70eef900ad9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163916Z:ee3b50c8-b3c4-4703-a22f-9ff57102ff64"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001045Z:f06ce2a5-639b-4e51-b8fb-e70eef900ad9"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:16 GMT"
+ "Tue, 13 Jul 2021 00:10:44 GMT"
],
"Content-Length": [
"810"
@@ -1450,13 +1450,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/policies/policy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "f9257991-8e96-4207-9caf-aabc803b267b"
+ "a7749b04-0033-4d0f-8bc7-a7822b496fd6"
],
"If-Match": [
"*"
@@ -1465,10 +1465,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1485,31 +1485,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPIY=\""
+ "\"AAAAAAAA/40=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5571c6b5-6b67-472f-840b-9cf0f912e945"
+ "f7db2c98-9473-404d-8c03-f0af11e52d80"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1192"
],
"x-ms-correlation-request-id": [
- "146cd555-51a9-440c-a3c3-4973f5a528da"
+ "367aa415-c135-4e7e-8b62-e19c680f5bec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163921Z:146cd555-51a9-440c-a3c3-4973f5a528da"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:367aa415-c135-4e7e-8b62-e19c680f5bec"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:21 GMT"
+ "Tue, 13 Jul 2021 00:10:48 GMT"
],
"Content-Length": [
"810"
@@ -1525,22 +1525,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3b286d0-8bb5-4219-b16b-534fb2c6f853"
+ "febdba1a-214a-4f6c-b1dd-12a5da6d2e9c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1551,31 +1551,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPGk=\""
+ "\"AAAAAAAA/2k=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d8f8e143-d7d8-43e2-912e-d21ffbcdfee9"
+ "96dcf90d-81a6-4cb7-b162-523ff98ae7b4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11992"
],
"x-ms-correlation-request-id": [
- "f0398119-1841-4cee-ae33-2b3c8a836956"
+ "628a15cb-4e9d-498d-bfcc-4279fbb10476"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163916Z:f0398119-1841-4cee-ae33-2b3c8a836956"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001045Z:628a15cb-4e9d-498d-bfcc-4279fbb10476"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:16 GMT"
+ "Tue, 13 Jul 2021 00:10:44 GMT"
],
"Content-Length": [
"810"
@@ -1591,22 +1591,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce612bfd-7bf3-4144-ba44-52a4eb4a885d"
+ "4fed08ff-5ce0-496a-a719-d19b3c8de3c1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1619,26 +1619,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "80ad4990-c08d-467d-a440-2ab95b32c6ad"
+ "2c8d8c8a-a51b-4c84-961d-7e50558dd9c2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11991"
],
"x-ms-correlation-request-id": [
- "48d85b2d-c75b-49e7-b297-4672fca78a10"
+ "b4acd5d4-10d5-4fb2-8da4-946d2e967ebe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163917Z:48d85b2d-c75b-49e7-b297-4672fca78a10"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001045Z:b4acd5d4-10d5-4fb2-8da4-946d2e967ebe"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:17 GMT"
+ "Tue, 13 Jul 2021 00:10:45 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60511eab-3f4b-4119-b073-8b716394d9c7"
+ "9410c84c-4a20-46fb-8706-edc8fde1d198"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1682,26 +1682,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0e1866a4-4310-4173-b6be-829366d03c62"
+ "cc7df966-5ab0-407d-9d36-c4494564087e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11979"
],
"x-ms-correlation-request-id": [
- "c89c4e65-1594-4b17-b9b0-2b3829033d64"
+ "03e55769-050d-4c7f-8fed-e47b1b5dd0c1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163921Z:c89c4e65-1594-4b17-b9b0-2b3829033d64"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:03e55769-050d-4c7f-8fed-e47b1b5dd0c1"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:21 GMT"
+ "Tue, 13 Jul 2021 00:10:49 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ae47db8-3ced-49e9-b57e-9c0ea28e51e1"
+ "4e7164a3-47ca-4324-8b0b-1fa3663e5073"
],
"If-Match": [
"*"
@@ -1732,10 +1732,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1748,26 +1748,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "39c5cdaa-4cfd-4146-91cd-2db406847c0a"
+ "1382db5d-579d-4f7f-ba60-6776d2c08422"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "11d06be4-24b7-412b-b040-584587246a73"
+ "aad0ba2f-dcb7-482d-b4d7-da516aec9773"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163917Z:11d06be4-24b7-412b-b040-584587246a73"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001045Z:aad0ba2f-dcb7-482d-b4d7-da516aec9773"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:17 GMT"
+ "Tue, 13 Jul 2021 00:10:45 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f5d3c8e-8b29-42a6-8fee-a06b6e97c24a"
+ "3b17c755-d677-4f72-b85c-5441e6f893a0"
],
"If-Match": [
"*"
@@ -1795,10 +1795,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1811,26 +1811,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9f370028-20b2-4be9-a26a-968e65c0aa18"
+ "8b8cec82-61f8-4e73-99ce-c461eccbae39"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14991"
+ "14993"
],
"x-ms-correlation-request-id": [
- "76334216-c4e4-4c33-a38f-de0ca5dbc17b"
+ "7a7e8621-1fa5-4d3f-aaa6-34ee526985d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163921Z:76334216-c4e4-4c33-a38f-de0ca5dbc17b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:7a7e8621-1fa5-4d3f-aaa6-34ee526985d3"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:21 GMT"
+ "Tue, 13 Jul 2021 00:10:49 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f67c93e0-4cb6-41e9-b2f1-627dc5ab2c30"
+ "39965598-fb1f-4fcd-8e49-0024d2221813"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1871,29 +1871,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f42b0bf5-f69c-4b49-b900-c7423e36f16a"
+ "b80f4742-7e95-45a9-a3bc-7bc9a846717f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11989"
],
"x-ms-correlation-request-id": [
- "839ea4e6-ddc6-4770-a19b-2aac20b9da8b"
+ "f284e197-5fb0-41c0-8972-f859492d24b8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163917Z:839ea4e6-ddc6-4770-a19b-2aac20b9da8b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001046Z:f284e197-5fb0-41c0-8972-f859492d24b8"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:17 GMT"
+ "Tue, 13 Jul 2021 00:10:45 GMT"
],
"Content-Length": [
- "7423"
+ "7816"
],
"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 \"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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5af87219-c9f5-4ecc-a58a-1491d24854f4"
+ "7a339316-3f0f-48d1-95c4-47b46d415e0d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1934,29 +1934,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "22bba85b-9a14-440e-a2ee-dcee33a478f0"
+ "a1ce66d3-3eaa-462e-9065-a8568b785856"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11977"
],
"x-ms-correlation-request-id": [
- "f012b181-b49b-4165-b6b9-af8672c595e5"
+ "e0b0ce66-6418-4063-8adf-1b7d2ebb109a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163922Z:f012b181-b49b-4165-b6b9-af8672c595e5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:e0b0ce66-6418-4063-8adf-1b7d2ebb109a"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:21 GMT"
+ "Tue, 13 Jul 2021 00:10:49 GMT"
],
"Content-Length": [
- "7423"
+ "7816"
],
"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 \"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/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}",
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"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": [
- "c7371af6-73a1-43e0-9678-24ea549cf224"
+ "74e346be-9a1f-4f0e-97ae-e3061e745f66"
],
"If-Match": [
"*"
@@ -1984,10 +1984,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2004,31 +2004,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPHE=\""
+ "\"AAAAAAAA/3I=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8a2afbc4-4900-4d10-b04c-15cad078f796"
+ "1e8a92e7-8404-40e0-a93b-57d80cf29229"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-correlation-request-id": [
- "875da729-8bbe-42a1-a3de-870e4ae2b261"
+ "f9a996b8-2400-4f00-a121-d8ab63a107c2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163918Z:875da729-8bbe-42a1-a3de-870e4ae2b261"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001047Z:f9a996b8-2400-4f00-a121-d8ab63a107c2"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:18 GMT"
+ "Tue, 13 Jul 2021 00:10:46 GMT"
],
"Content-Length": [
"540"
@@ -2044,13 +2044,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/operations/create-resource/policies/policy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"value\": \"\",\r\n \"format\": \"xml\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5467cb1-9507-4f13-9f95-54e34af8a5d7"
+ "5e722143-56f3-4723-8186-88ee1d2ed9e3"
],
"If-Match": [
"*"
@@ -2059,10 +2059,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2079,31 +2079,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPI0=\""
+ "\"AAAAAAAA/5Y=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "11eb5a59-dffb-4749-9289-3cc8931a066d"
+ "08afc0f2-a0df-4a46-91bc-a5463e50157c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1191"
],
"x-ms-correlation-request-id": [
- "cc2c551e-67ec-426c-ad20-35ee99d1daf3"
+ "0f802d18-9c34-436a-9822-df28ece91c09"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163922Z:cc2c551e-67ec-426c-ad20-35ee99d1daf3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001050Z:0f802d18-9c34-436a-9822-df28ece91c09"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:22 GMT"
+ "Tue, 13 Jul 2021 00:10:49 GMT"
],
"Content-Length": [
"540"
@@ -2119,22 +2119,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d091db1-e953-4d4a-88cd-b9973cda31dd"
+ "d2288f53-5b06-4c80-baaa-cb0dde00d299"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2145,31 +2145,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPHE=\""
+ "\"AAAAAAAA/3I=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "80a767ce-bbf3-4458-894a-c714a1d6b909"
+ "444d88bc-7e3c-49a4-838e-2e454e6fabe0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11988"
],
"x-ms-correlation-request-id": [
- "2afd0cb8-dd22-4d4b-a8dc-d24d956f8f4c"
+ "7082ab78-259b-4d23-ad0f-cdccc75f3c9b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163918Z:2afd0cb8-dd22-4d4b-a8dc-d24d956f8f4c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001047Z:7082ab78-259b-4d23-ad0f-cdccc75f3c9b"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:18 GMT"
+ "Tue, 13 Jul 2021 00:10:46 GMT"
],
"Content-Length": [
"540"
@@ -2185,22 +2185,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce62655f-5c96-4df8-b972-a8bb1fe6f0c1"
+ "9b56299a-522d-4198-b465-2c8d1a2a146f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2213,26 +2213,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4252749e-a365-49c9-a52c-5a1afffbebff"
+ "6debade9-8141-4fa5-9bfa-b74b711324d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11987"
],
"x-ms-correlation-request-id": [
- "9f01cc2e-8dfc-4f88-833a-f4b67cc6c52b"
+ "85094d94-5f1a-4f4d-9bcb-ab2106b6403b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163919Z:9f01cc2e-8dfc-4f88-833a-f4b67cc6c52b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001047Z:85094d94-5f1a-4f4d-9bcb-ab2106b6403b"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:19 GMT"
+ "Tue, 13 Jul 2021 00:10:47 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD14bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb3682e9-3083-42d2-9fd2-9ed79b969004"
+ "9ffd38ca-3f31-4c4f-ae61-32e07d0001e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2276,26 +2276,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "aaf4a3fd-adb1-4810-9fa1-3649dab613c4"
+ "4862dd6b-6222-4175-a951-79403254794f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11975"
],
"x-ms-correlation-request-id": [
- "6024d2c5-466e-43ee-8e3a-3b86d07bd88e"
+ "4e650caa-bd52-4c8c-ad2c-3c637371ae29"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163922Z:6024d2c5-466e-43ee-8e3a-3b86d07bd88e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001050Z:4e650caa-bd52-4c8c-ad2c-3c637371ae29"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:22 GMT"
+ "Tue, 13 Jul 2021 00:10:50 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75363eea-83fb-4549-a59e-c573f8ae82fb"
+ "2a29eb87-07a0-433b-beff-aa12b6027f77"
],
"If-Match": [
"*"
@@ -2326,10 +2326,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2342,26 +2342,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "56bb29cf-be58-4e3e-883e-82fda15a5248"
+ "b50697a1-9c4f-41ef-9d78-d3367455e9fd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14994"
+ "14996"
],
"x-ms-correlation-request-id": [
- "0f55d4bd-17bf-4467-bd47-86be508234d6"
+ "4348d42f-cf58-4e2a-be95-1172e1f31f50"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163919Z:0f55d4bd-17bf-4467-bd47-86be508234d6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001047Z:4348d42f-cf58-4e2a-be95-1172e1f31f50"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:19 GMT"
+ "Tue, 13 Jul 2021 00:10:47 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "741313b5-a61f-455d-8aea-f401f2f0d751"
+ "909ad97e-00c4-460f-a415-74256c2bf796"
],
"If-Match": [
"*"
@@ -2389,10 +2389,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2405,26 +2405,26 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "23d24468-25fc-450c-886c-c2da1d217490"
+ "04550a6c-82f9-4714-bf31-9b5c4ba1f2e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14990"
+ "14992"
],
"x-ms-correlation-request-id": [
- "b31c3182-21e2-44ac-8490-d41ed50a6b29"
+ "2aba9530-11a6-4d8f-8ed1-344586f44a30"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163922Z:b31c3182-21e2-44ac-8490-d41ed50a6b29"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001050Z:2aba9530-11a6-4d8f-8ed1-344586f44a30"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:22 GMT"
+ "Tue, 13 Jul 2021 00:10:49 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3VubGltaXRlZC9wb2xpY2llcy9wb2xpY3k/Zm9ybWF0PXJhd3htbCZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2e4a3c4-1fc6-429a-a61c-c213affba228"
+ "dd78192a-7627-4572-9642-4d68e3b9124e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2463,31 +2463,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPH8=\""
+ "\"AAAAAAAA/4Q=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "25c833a5-f71f-457b-a5c4-6dea5abc08fa"
+ "0a214554-46bd-4bae-80f4-1d770391e21a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11983"
],
"x-ms-correlation-request-id": [
- "44f71a58-667d-4e8e-8b05-c72bcdc47529"
+ "a74868be-598e-4e9d-ad48-0787a58f91c2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163920Z:44f71a58-667d-4e8e-8b05-c72bcdc47529"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001048Z:a74868be-598e-4e9d-ad48-0787a58f91c2"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:20 GMT"
+ "Tue, 13 Jul 2021 00:10:48 GMT"
],
"Content-Length": [
"581"
@@ -2503,22 +2503,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5943f7e-6bc3-4a1f-92e9-7d7555ffab54"
+ "3f8d5a41-5e36-4716-bb9d-09202803f922"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2529,31 +2529,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPIY=\""
+ "\"AAAAAAAA/40=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "67dd9470-6fa5-44d1-930a-daa871e70b9c"
+ "defd2fb1-1427-47b2-8293-b56d757e13ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11980"
],
"x-ms-correlation-request-id": [
- "c8b9fbc4-3e09-4791-905e-3c70fe036ca0"
+ "2665cf2f-4c49-4960-8545-72da38fb45d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163921Z:c8b9fbc4-3e09-4791-905e-3c70fe036ca0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001049Z:2665cf2f-4c49-4960-8545-72da38fb45d8"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:21 GMT"
+ "Tue, 13 Jul 2021 00:10:49 GMT"
],
"Content-Length": [
"813"
@@ -2569,22 +2569,22 @@
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvb3BlcmF0aW9ucy9jcmVhdGUtcmVzb3VyY2UvcG9saWNpZXMvcG9saWN5P2Zvcm1hdD1yYXd4bWwmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c856066-52dc-4f1d-9ac7-6b2d67bae801"
+ "c22d5220-dd05-441f-bdd3-e3400f2698b9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2595,31 +2595,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPI0=\""
+ "\"AAAAAAAA/5Y=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "db5517ee-daba-4fea-b2f2-ae93f983451d"
+ "69415a84-a4e0-4aef-8a43-b5ea634d063f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11976"
],
"x-ms-correlation-request-id": [
- "e76c5f6d-d510-4a76-ad3f-6e5926761884"
+ "48c3de02-3e6c-42e1-ab49-27ffb837b922"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163922Z:e76c5f6d-d510-4a76-ad3f-6e5926761884"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210713T001050Z:48c3de02-3e6c-42e1-ab49-27ffb837b922"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:22 GMT"
+ "Tue, 13 Jul 2021 00:10:49 GMT"
],
"Content-Length": [
"543"
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 f619784f0af3..9498be6a9343 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "686978b7-6d05-4a3b-a0b6-f33be05586ba"
+ "fcb2f2d3-a1c7-4356-a540-6cb5b2efe225"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cb4ebee7-9e6b-4e34-9035-5bacb91c9ab7"
+ "f06587ac-fe7e-4fbd-b625-2b5f7cbc5528"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "13a8a0d9-6406-434e-8401-0374f8903b9e"
+ "78f4a995-6732-45fe-ae9e-a12eb8f93393"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164101Z:13a8a0d9-6406-434e-8401-0374f8903b9e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001249Z:78f4a995-6732-45fe-ae9e-a12eb8f93393"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:00 GMT"
+ "Tue, 13 Jul 2021 00:12:49 GMT"
],
"Content-Length": [
"1287"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps8705\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fbc964b5-acf1-4806-b832-e1ddf2adb2e2"
+ "01dc896f-18d4-448d-96da-f3fb31f8cd8e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPOg=\""
+ "\"AAAAAAABABE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b1018492-42bc-4b19-a5f5-0ea47ef5c940"
+ "888f6f49-f197-4ee6-a2f9-33f4b21e91e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -111,16 +114,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "25722b00-8b23-4664-9355-b6dd45fc7296"
+ "3266cb62-078e-4894-94ae-fdcefff65f50"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164103Z:25722b00-8b23-4664-9355-b6dd45fc7296"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001251Z:3266cb62-078e-4894-94ae-fdcefff65f50"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:02 GMT"
+ "Tue, 13 Jul 2021 00:12:50 GMT"
],
"Content-Length": [
"998"
@@ -132,26 +132,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps8705\",\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a1a6bfa-bb4a-4804-a1e7-40d3c1891e59"
+ "01dc896f-18d4-448d-96da-f3fb31f8cd8e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,13 +162,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPOg=\""
+ "\"AAAAAAABABE=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2271ac6c-2c1f-4ccc-acf2-4bb0b4f22160"
+ "7e8a989b-d95f-43e0-96c1-823ef1885e14"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,16 +180,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "05019791-cc8d-4a95-a221-be930a4d542e"
+ "1fc78066-b674-46e6-8a40-e117060cb892"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164103Z:05019791-cc8d-4a95-a221-be930a4d542e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001251Z:1fc78066-b674-46e6-8a40-e117060cb892"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:02 GMT"
+ "Tue, 13 Jul 2021 00:12:50 GMT"
],
"Content-Length": [
"484"
@@ -198,26 +198,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps8705\",\r\n \"description\": \"ps9916\",\r\n \"terms\": \"ps9545\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "329a610d-4202-4eff-8d6e-cf8f30fd46f9"
+ "74a4dd1c-725b-4e05-9162-1d21f345e663"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPPI=\""
+ "\"AAAAAAABAB8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "25f93b66-983e-44a1-81e0-34b655a39436"
+ "74bf1e5c-254c-4442-9213-e6f5fe1ab523"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,19 +246,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "a2dcb803-bd2a-4698-a436-505673aa6720"
+ "688dca53-f3c4-4ae2-9323-fc6b833629da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164104Z:a2dcb803-bd2a-4698-a436-505673aa6720"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001252Z:688dca53-f3c4-4ae2-9323-fc6b833629da"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:03 GMT"
+ "Tue, 13 Jul 2021 00:12:52 GMT"
],
"Content-Length": [
- "484"
+ "485"
],
"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/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "521e9d1c-e65a-4611-b928-9674e62d8494"
+ "a8139834-0404-4656-8a09-e87a63489abe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -296,8 +296,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d661656e-59ab-4fd5-bc00-73ed1f9118d9"
+ "b522310c-11ad-4be3-aac0-512fed6fc724"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -306,16 +309,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "ccf7c663-a9f0-493e-9547-2da6793604a4"
+ "7c8128d1-fe60-4da3-bb07-1b88df90d9c3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164103Z:ccf7c663-a9f0-493e-9547-2da6793604a4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001251Z:7c8128d1-fe60-4da3-bb07-1b88df90d9c3"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:02 GMT"
+ "Tue, 13 Jul 2021 00:12:50 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/ps7899/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a570a12-a3b7-4ee4-8f08-daf7b33ee11d"
+ "213b9190-4817-4405-9c36-0ce5071aa175"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -359,8 +359,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d31cfbb4-c948-4ede-96e6-7f7824ac2e6a"
+ "f4489cb2-b73e-48ef-a5f3-e7e2f93f3599"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,16 +372,13 @@
"11995"
],
"x-ms-correlation-request-id": [
- "29938d0f-e87d-4ba3-960e-243e4729a6d2"
+ "51e0bf47-8bc6-4eed-921b-45aeef28fc4d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164104Z:29938d0f-e87d-4ba3-960e-243e4729a6d2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001252Z:51e0bf47-8bc6-4eed-921b-45aeef28fc4d"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:03 GMT"
+ "Tue, 13 Jul 2021 00:12:51 GMT"
],
"Content-Length": [
"754"
@@ -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/ps7899/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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1NC9hcGlzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "391e7589-a4a1-4b70-921d-e28a10bd5cfd"
+ "52bfc356-8be8-444b-892b-3fe8a75bc0f3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -422,8 +422,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "78ab2b4a-a0d8-4dc6-8e87-363c7945a55d"
+ "eea68440-7adb-4525-aa89-7abcd969b7bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -432,16 +435,13 @@
"11990"
],
"x-ms-correlation-request-id": [
- "63a99bef-35d9-4f90-a052-396afda48a19"
+ "f56c7871-8ebd-4f6c-b297-5a9817686f19"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164106Z:63a99bef-35d9-4f90-a052-396afda48a19"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001253Z:f56c7871-8ebd-4f6c-b297-5a9817686f19"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:05 GMT"
+ "Tue, 13 Jul 2021 00:12:53 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f09bd89-e681-4211-a2e4-0127ae92adab"
+ "9fe686a8-8bf2-416a-8e5d-91c85cdeec97"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -485,8 +485,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "3576bf7d-6197-41b8-9e3c-0dff915f66ef"
+ "e8d6bce0-026b-456a-8180-576549ed6038"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -495,16 +498,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "b5b4cbf6-3ca8-40d1-a5d9-e4fc44dc353e"
+ "dc9ba162-4ad3-4155-a9f7-ccf4adde412e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164103Z:b5b4cbf6-3ca8-40d1-a5d9-e4fc44dc353e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001251Z:dc9ba162-4ad3-4155-a9f7-ccf4adde412e"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:03 GMT"
+ "Tue, 13 Jul 2021 00:12:51 GMT"
],
"Content-Length": [
"729"
@@ -520,22 +520,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b05122b-8985-4317-b7a2-085d21414efb"
+ "27920501-ad61-4592-a883-ec721cdfe960"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -548,8 +548,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f0a92ed8-0740-4026-83ec-dc664fc8e0c7"
+ "82a063bc-d3e9-426a-8c53-fbcde971c94b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -558,16 +561,13 @@
"11991"
],
"x-ms-correlation-request-id": [
- "e0bdcab6-c9c7-46e7-82c5-24466a3bcd96"
+ "657c0f52-beb0-49ad-801c-50a900c44c9d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164105Z:e0bdcab6-c9c7-46e7-82c5-24466a3bcd96"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001253Z:657c0f52-beb0-49ad-801c-50a900c44c9d"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:04 GMT"
+ "Tue, 13 Jul 2021 00:12:52 GMT"
],
"Content-Length": [
"729"
@@ -583,22 +583,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2cc349d-34f9-4c89-8e87-88f68909d862"
+ "9fe686a8-8bf2-416a-8e5d-91c85cdeec97"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -609,13 +609,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPIk=\""
+ "\"AAAAAAAA/5E=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c5df0660-e282-459c-b7c0-f2bd72953e49"
+ "97333f77-36d6-45eb-92b5-3e7d0a60106a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -624,16 +627,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "f34f5afa-1c49-4852-b743-805c261ea6d0"
+ "357dd0e3-8b16-4dde-81d7-6514ba600ac9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164104Z:f34f5afa-1c49-4852-b743-805c261ea6d0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001251Z:357dd0e3-8b16-4dde-81d7-6514ba600ac9"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:03 GMT"
+ "Tue, 13 Jul 2021 00:12:51 GMT"
],
"Content-Length": [
"619"
@@ -645,17 +645,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps8354?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzODM1ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": false,\r\n \"subscriptionsLimit\": 20,\r\n \"state\": \"published\",\r\n \"displayName\": \"ps997\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa0f1901-ae4a-4655-923b-94af779b67e7"
+ "74a4dd1c-725b-4e05-9162-1d21f345e663"
],
"If-Match": [
"*"
@@ -664,16 +664,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "235"
+ "236"
]
},
"ResponseHeaders": {
@@ -683,11 +683,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAB8=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "05e1fab1-4d38-4799-84d6-97cbebac356e"
+ "e37ab54e-6bcb-4f46-a1bb-d7a578e60c20"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -696,41 +702,44 @@
"1197"
],
"x-ms-correlation-request-id": [
- "5b522ac6-105f-4e06-93bc-f0fd0745102b"
+ "dedaeccf-09b4-43aa-99ea-be245eb710c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164104Z:5b522ac6-105f-4e06-93bc-f0fd0745102b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001252Z:dedaeccf-09b4-43aa-99ea-be245eb710c9"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:03 GMT"
+ "Tue, 13 Jul 2021 00:12:52 GMT"
+ ],
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products?$filter=properties/displayName%20eq%20'ps997'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzPyRmaWx0ZXI9cHJvcGVydGllcy9kaXNwbGF5TmFtZSUyMGVxJTIwJ3BzOTk3JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35e35a9f-5329-4d2a-aac5-da6e0eb8e77d"
+ "6dc543d4-35f3-4bf0-b7b8-ccaed1511b76"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -743,8 +752,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8463a020-b15f-4288-a097-3f4f33ba1e19"
+ "e98b8f36-56c9-4b7d-a302-14f38778e512"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -753,19 +765,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "cfc84c25-b841-4a60-a782-48d69e59c6a2"
+ "26384caa-bd04-426d-86af-007e6ad7dcdb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164104Z:cfc84c25-b841-4a60-a782-48d69e59c6a2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001252Z:26384caa-bd04-426d-86af-007e6ad7dcdb"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:04 GMT"
+ "Tue, 13 Jul 2021 00:12:52 GMT"
],
"Content-Length": [
- "580"
+ "581"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -774,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/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis/echo-api/products?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL2FwaXMvZWNoby1hcGkvcHJvZHVjdHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e96b2cd1-8de7-4bbe-aab9-a6924159d369"
+ "5c86db47-018f-45e0-abb2-2dad3fccbc05"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -806,8 +815,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5859a33a-7185-439a-9901-f50d9cbdc0bb"
+ "cb434e48-00c4-427f-978a-8658f6b6175c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -816,19 +828,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "9453f53b-0f7b-4e2e-aad0-67c1aa73dc5e"
+ "396cce82-e807-43de-b065-0016cb017bdd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164105Z:9453f53b-0f7b-4e2e-aad0-67c1aa73dc5e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001253Z:396cce82-e807-43de-b065-0016cb017bdd"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:04 GMT"
+ "Tue, 13 Jul 2021 00:12:52 GMT"
],
"Content-Length": [
- "1887"
+ "1888"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -837,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/ps7899\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/products\",\r\n \"name\": \"ps7899\",\r\n \"properties\": {\r\n \"displayName\": \"ps997\",\r\n \"description\": \"ps4812\",\r\n \"terms\": \"ps8394\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899/apis/echo-api?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OS9hcGlzL2VjaG8tYXBpP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82f25d3b-8da6-4b2e-837b-aa1abbfe4f5c"
+ "27920501-ad61-4592-a883-ec721cdfe960"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -869,8 +878,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b74e66ad-b2eb-403e-a25a-c28be3c05e1f"
+ "2d6897ec-1819-4492-8db9-987f2c4daa55"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -879,16 +891,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "831dc92b-e85a-4a4c-948b-d7c3375f495c"
+ "911bf08e-13af-4db4-b9e8-01c7abbadd9d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164106Z:831dc92b-e85a-4a4c-948b-d7c3375f495c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001253Z:911bf08e-13af-4db4-b9e8-01c7abbadd9d"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:05 GMT"
+ "Tue, 13 Jul 2021 00:12:53 GMT"
],
"Expires": [
"-1"
@@ -901,13 +910,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/ps7899?deleteSubscriptions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3BzNzg5OT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffd39826-c9e1-44d8-a73c-46ded719361a"
+ "03ece42f-bd50-4972-929f-59ca251d2fcc"
],
"If-Match": [
"*"
@@ -916,10 +925,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -932,8 +941,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bbd9f95c-9961-49a6-8e6d-a660ae10b55c"
+ "f2c5418b-9685-4150-91cf-3bdb126e80cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -942,16 +954,13 @@
"14998"
],
"x-ms-correlation-request-id": [
- "2879dbd1-061e-40b6-8529-7d0f1e4314ae"
+ "977b9c7d-23f7-481f-9f93-5f9c2e99e29c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164106Z:2879dbd1-061e-40b6-8529-7d0f1e4314ae"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001254Z:977b9c7d-23f7-481f-9f93-5f9c2e99e29c"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:05 GMT"
+ "Tue, 13 Jul 2021 00:12:53 GMT"
],
"Expires": [
"-1"
@@ -966,13 +975,13 @@
],
"Names": {
"": [
- "ps7899",
- "ps8705",
- "ps9916",
- "ps9545",
- "ps997",
- "ps4812",
- "ps8394"
+ "ps8354",
+ "ps3631",
+ "ps1184",
+ "ps6815",
+ "ps7874",
+ "ps9840",
+ "ps1049"
]
},
"Variables": {
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 85895dbf9ba4..699312589d5d 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,28 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"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\": \"ps383\",\r\n \"value\": \"ps2042\"\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\": \"ps4604\",\r\n \"value\": \"ps5500\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9959cdba-a30c-4c18-9df0-c9852442169f"
+ "1aa295d6-f83b-4027-8e01-167259fd7551"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "174"
+ "175"
]
},
"ResponseHeaders": {
@@ -33,31 +33,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171c4da2ca600fe4c29764&asyncCode=201"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "7d3f0911-3fd0-4458-bb9d-3287eea8a1b0"
+ "639ec637-1f76-44be-8876-ad53986ff5b9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "c7b3d1bb-26e0-45d2-937c-8487a7e4acef"
+ "08d62472-4853-4521-b5fb-c65ba40d5819"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164813Z:c7b3d1bb-26e0-45d2-937c-8487a7e4acef"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183139Z:08d62472-4853-4521-b5fb-c65ba40d5819"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:13 GMT"
+ "Wed, 28 Jul 2021 18:31:39 GMT"
],
"Expires": [
"-1"
@@ -70,31 +70,151 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\"\r\n }\r\n}",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4aa36ed6-614d-42d5-acc2-8fb8d259d351"
+ "1aa295d6-f83b-4027-8e01-167259fd7551"
],
- "If-Match": [
- "*"
+ "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"
+ ],
+ "ETag": [
+ "\"AAAAAAAACho=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "d3954b43-275d-4d58-8aab-c4d301300955"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "b84c437c-4c85-41d3-ab93-27daae7c1c1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183209Z:b84c437c-4c85-41d3-ab93-27daae7c1c1d"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:32:09 GMT"
+ ],
+ "Content-Length": [
+ "430"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "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==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b922dbd3-491e-4cf3-8758-9db6ac809a7e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"AAAAAAAACho=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "6b0da6eb-42f9-4775-a8d0-ff746dd91d6a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "37c48172-f576-4572-bc11-df66c8d4b877"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183209Z:37c48172-f576-4572-bc11-df66c8d4b877"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:32:09 GMT"
+ ],
+ "Content-Length": [
+ "18"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Content-Length": [
- "173"
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": \"ps5500\"\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==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3a92b9a5-12a9-4598-86ba-f1ba678400aa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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": {
@@ -104,32 +224,104 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171caaa2ca600fe4c29770&asyncCode=200"
+ "ETag": [
+ "\"AAAAAAAACiA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "66a763dd-eab0-4e88-881c-969a226ff35f"
+ "29bb92c8-a660-4565-9b2d-6d1218039b07"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1194"
],
"x-ms-correlation-request-id": [
- "582c6d3b-7dcb-4d26-98c8-9b4c153c3f5f"
+ "3d6ff63b-2cb6-4437-af17-d5f7064cbbb5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164946Z:582c6d3b-7dcb-4d26-98c8-9b4c153c3f5f"
+ "WESTUS:20210728T183444Z:3d6ff63b-2cb6-4437-af17-d5f7064cbbb5"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:34:43 GMT"
+ ],
+ "Content-Length": [
+ "18"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": \"ps5500\"\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",
+ "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}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6762342b-f62f-40d0-b420-889ba7fdb20d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "190"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "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"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "9d3c68bd-9e05-489e-8126-99264b92d884"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e16e0ac-c37f-47f2-89bd-caa0f1e986b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183210Z:8e16e0ac-c37f-47f2-89bd-caa0f1e986b2"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:49:45 GMT"
+ "Wed, 28 Jul 2021 18:32:09 GMT"
],
"Expires": [
"-1"
@@ -142,16 +334,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171c4da2ca600fe4c29764&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjNGRhMmNhNjAwZmU0YzI5NzY0JmFzeW5jQ29kZT0yMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6762342b-f62f-40d0-b420-889ba7fdb20d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -162,13 +357,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPoo=\""
+ "\"AAAAAAAAChw=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "00e0b5e0-379e-4bb7-9cc0-c1da8bbf57aa"
+ "77f5afef-3a67-4f97-9a4e-4fb858eb10a4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,19 +375,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "6c893730-e54b-4b9b-90f3-6d15741f43d2"
+ "81acedca-699d-4b74-96ba-e864a2397f6b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164843Z:6c893730-e54b-4b9b-90f3-6d15741f43d2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183240Z:81acedca-699d-4b74-96ba-e864a2397f6b"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:43 GMT"
+ "Wed, 28 Jul 2021 18:32:39 GMT"
],
"Content-Length": [
- "429"
+ "614"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,26 +393,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160/refreshSecret?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MC9yZWZyZXNoU2VjcmV0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3e12fe2-1ec2-48d2-9e11-9273cb2cfe23"
+ "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -227,35 +422,95 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAAPoo=\""
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e44ce490-0c2c-4c1e-b3b6-d1b0d6b5bcc2"
+ "e28a5b1a-5317-4a4b-86dc-c701ed347d8b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "d6a7fa0a-6c84-4a6b-a371-fea0cfdbb9a8"
+ "1a13de72-65d9-4798-94e1-d7dd6b5269bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164843Z:d6a7fa0a-6c84-4a6b-a371-fea0cfdbb9a8"
+ "WESTUS:20210728T183240Z:1a13de72-65d9-4798-94e1-d7dd6b5269bb"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:32:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
+ ],
+ "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"
+ ],
+ "ETag": [
+ "\"AAAAAAAACh0=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "41ac7834-1c15-43bb-a5ea-ad37c26e72b0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "b014b4f7-c717-4790-8b62-ba1453b2494b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183310Z:b014b4f7-c717-4790-8b62-ba1453b2494b"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:48:43 GMT"
+ "Wed, 28 Jul 2021 18:33:09 GMT"
],
"Content-Length": [
- "18"
+ "628"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -264,26 +519,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps2042\"\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMS9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
- "RequestMethod": "POST",
+ "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==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aab7ffa0-6521-40ee-8356-18e7d676dd9f"
- ],
- "Accept-Language": [
- "en-US"
+ "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,34 +546,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPo0=\""
+ "\"AAAAAAAACh0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6c89c739-6c12-4a50-ad19-d71a2c1caeaf"
+ "0a671f4f-2c0b-456f-b295-4b9ed259888e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
],
"x-ms-correlation-request-id": [
- "525aae9c-ebfc-417c-be75-9a5e033b08eb"
+ "4bd06c47-c3ca-420d-bfc0-0fe7dc4eafa0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165016Z:525aae9c-ebfc-417c-be75-9a5e033b08eb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183310Z:4bd06c47-c3ca-420d-bfc0-0fe7dc4eafa0"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:16 GMT"
+ "Wed, 28 Jul 2021 18:33:10 GMT"
],
"Content-Length": [
- "18"
+ "628"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,32 +582,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps2042\"\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps6493\",\r\n \"value\": \"ps7785\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps7160?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNzE2MD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6d1232c-75c2-4732-8d5d-f5ad556c2351"
+ "1605fe4d-6e3d-4c6b-93ec-2da9ec43d45f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "102"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -365,69 +611,69 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c6ba2ca600fe4c29768&asyncCode=201"
+ "ETag": [
+ "\"AAAAAAAACh0=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "60f3aa1f-5c78-49af-ab59-ba8478f2bd4b"
+ "cd15d859-2247-4f35-81c0-e4e29e2a3fef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
],
"x-ms-correlation-request-id": [
- "5b415f78-b643-4776-b0cc-d3f8d2a29b71"
+ "4f086696-238a-4713-9165-23d56add4926"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164844Z:5b415f78-b643-4776-b0cc-d3f8d2a29b71"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183311Z:4f086696-238a-4713-9165-23d56add4926"
],
"Date": [
- "Tue, 21 Jul 2020 16:48:43 GMT"
+ "Wed, 28 Jul 2021 18:33:10 GMT"
+ ],
+ "Content-Length": [
+ "614"
+ ],
+ "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/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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"ps6493\",\r\n \"value\": \"ps7785\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true,\r\n \"displayName\": \"ps9075\",\r\n \"value\": \"ps2973\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1647788f-82ae-4813-9825-b8153b1c8bf3"
- ],
- "If-Match": [
- "*"
+ "316c8a91-a72d-4c41-a028-68964cb6dfb2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "174"
+ "102"
]
},
"ResponseHeaders": {
@@ -438,31 +684,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c8ba2ca600fe4c2976c&asyncCode=200"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "85d6d0e8-bfd8-46be-8476-240eccbaf689"
+ "cfada894-f2ee-4fd2-a649-d727b3c3fe6d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "f796d8d9-0a63-45ca-b8fb-f36228342f87"
+ "1fd45db9-9fba-48ae-952f-042a3704b680"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164915Z:f796d8d9-0a63-45ca-b8fb-f36228342f87"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183311Z:1fd45db9-9fba-48ae-952f-042a3704b680"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:14 GMT"
+ "Wed, 28 Jul 2021 18:33:10 GMT"
],
"Expires": [
"-1"
@@ -475,16 +721,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c6ba2ca600fe4c29768&asyncCode=201",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjNmJhMmNhNjAwZmU0YzI5NzY4JmFzeW5jQ29kZT0yMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "316c8a91-a72d-4c41-a028-68964cb6dfb2"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -495,31 +744,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPos=\""
+ "\"AAAAAAAACh4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f443e3b3-a76e-483c-9a7f-71d59fc9233a"
+ "17ff27f1-876e-4bf6-80c4-78eb77c0a7c1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11994"
],
"x-ms-correlation-request-id": [
- "a1a75597-e0ab-48bc-8847-c905bf826d12"
+ "69766acd-fb85-476e-8c65-5f5f396cd79d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:a1a75597-e0ab-48bc-8847-c905bf826d12"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183341Z:69766acd-fb85-476e-8c65-5f5f396cd79d"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:13 GMT"
+ "Wed, 28 Jul 2021 18:33:41 GMT"
],
"Content-Length": [
"352"
@@ -531,26 +780,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c373aa0-7dc0-4e9e-95e1-556019828193"
+ "8aa9e140-c7ab-4b74-858a-b8b9f98de453"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -563,29 +812,92 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "35cb33bd-4b2c-457a-9d04-e35f424eeaeb"
+ "20bf0a41-c026-4f21-b909-e73b1d3725f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11993"
],
"x-ms-correlation-request-id": [
- "eccf53ed-bb05-4048-aa41-a5ca3736937b"
+ "4b313a98-324a-4d56-b017-9255f2baca57"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:eccf53ed-bb05-4048-aa41-a5ca3736937b"
+ "WESTUS:20210728T183341Z:4b313a98-324a-4d56-b017-9255f2baca57"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:33:41 GMT"
+ ],
+ "Content-Length": [
+ "1614"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "837d3015-c0da-466d-a542-8e8976a1dbb7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "e5140ede-6b08-491c-83d7-0500b6befc6c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "99654827-6134-4e7b-a1a2-658b2270f221"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183342Z:99654827-6134-4e7b-a1a2-658b2270f221"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:49:13 GMT"
+ "Wed, 28 Jul 2021 18:33:41 GMT"
],
"Content-Length": [
- "924"
+ "1614"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -594,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/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\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/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues?$filter=substringof('ps',properties/displayName)&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzPyRmaWx0ZXI9c3Vic3RyaW5nb2YoJ3BzJyxwcm9wZXJ0aWVzL2Rpc3BsYXlOYW1lKSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93a6df01-3d25-4e51-a7f3-5493fd555a8f"
+ "5df9472a-8fda-4d38-a4d9-1cb3a7d959e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -626,29 +938,95 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a979c509-08f5-4151-a085-7a152720e4ff"
+ "11d63187-676d-4c05-bede-2616fdc7269a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11991"
],
"x-ms-correlation-request-id": [
- "0e28e7a0-3334-45cd-9644-478d41ee2d49"
+ "8bf94b7c-8878-49ea-95db-34eea83f37ca"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:0e28e7a0-3334-45cd-9644-478d41ee2d49"
+ "WESTUS:20210728T183342Z:8bf94b7c-8878-49ea-95db-34eea83f37ca"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:33:42 GMT"
+ ],
+ "Content-Length": [
+ "530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "880264f0-34bd-4fa3-b77a-f84446e81db6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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"
+ ],
+ "ETag": [
+ "\"AAAAAAAACh4=\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "0082a1f0-342c-4039-8d3e-bdb4892bae92"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad5b0301-b89f-439e-9100-5ef925709881"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183342Z:ad5b0301-b89f-439e-9100-5ef925709881"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:49:13 GMT"
+ "Wed, 28 Jul 2021 18:33:42 GMT"
],
"Content-Length": [
- "924"
+ "352"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -657,26 +1035,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/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\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/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"count\": 2\r\n}",
+ "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}",
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzPyRmaWx0ZXI9dGFncy9hbnkodDolMjB0JTIwZXElMjAnc2RrJykmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9be295e-6e19-4a9c-b084-2fd3e5c367de"
+ "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -686,32 +1064,35 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAACh4=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5efcea21-fd98-4180-9231-4d1f8414df45"
+ "575221e7-03ba-4cfc-8c38-40769491e6e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11989"
],
"x-ms-correlation-request-id": [
- "7f06eb64-8f6f-44b1-a732-d5992b72d296"
+ "77e78f05-3ff7-4598-915f-d1d25069eaf4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:7f06eb64-8f6f-44b1-a732-d5992b72d296"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183342Z:77e78f05-3ff7-4598-915f-d1d25069eaf4"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:13 GMT"
+ "Wed, 28 Jul 2021 18:33:42 GMT"
],
"Content-Length": [
- "529"
+ "352"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,26 +1101,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/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\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 \"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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4167e69-7c57-4a94-8c4b-e1b6499fd491"
+ "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -750,34 +1131,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPos=\""
+ "\"AAAAAAAACh8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2b4b6bd0-a796-4992-a3ec-6d7e8df78237"
+ "09418c98-5682-4f90-a781-8a74508a9198"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11987"
],
"x-ms-correlation-request-id": [
- "ec3d32b4-8f39-440f-92f1-47969329876a"
+ "c8edbbc8-fa36-40c9-9156-05b83fd3b927"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:ec3d32b4-8f39-440f-92f1-47969329876a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183413Z:c8edbbc8-fa36-40c9-9156-05b83fd3b927"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:14 GMT"
+ "Wed, 28 Jul 2021 18:34:13 GMT"
],
"Content-Length": [
- "352"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -786,26 +1167,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7834b6d4-cfaa-4c5f-91b7-63a2aea1af44"
+ "b98ec61f-ba0d-44fd-9bd4-937b991d284d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -815,35 +1196,32 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAAPos=\""
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "9838fff8-ad03-4fb4-bae3-5fe8cececebe"
+ "0b9ee7dc-43b5-447f-9f39-096d792294cb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11983"
],
"x-ms-correlation-request-id": [
- "00ee51de-0d4a-410e-beb1-c65f7e130a97"
+ "84693be8-7c89-48cd-a33a-a0bb5a4e3a63"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:00ee51de-0d4a-410e-beb1-c65f7e130a97"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183444Z:84693be8-7c89-48cd-a33a-a0bb5a4e3a63"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:14 GMT"
+ "Wed, 28 Jul 2021 18:34:44 GMT"
],
"Content-Length": [
- "352"
+ "86"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -852,26 +1230,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"NamedValue not found.\",\r\n \"details\": null\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "GET",
+ "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==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6929899-f843-40db-ba08-7b9b76eb1a63"
+ "1a04f370-abef-41ea-8e66-760514693a75"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -882,34 +1260,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPow=\""
+ "\"AAAAAAAACh4=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "88fcec3a-077a-4d37-b13d-69581ddb663e"
+ "63d0ab17-5cdc-4b28-a42e-1ef7247451aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
],
"x-ms-correlation-request-id": [
- "342a22bb-4fac-423e-a5f5-eaa042014e52"
+ "48e2609c-6e65-453d-bf39-fd5a86ea94f2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164945Z:342a22bb-4fac-423e-a5f5-eaa042014e52"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183342Z:48e2609c-6e65-453d-bf39-fd5a86ea94f2"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:44 GMT"
+ "Wed, 28 Jul 2021 18:33:42 GMT"
],
"Content-Length": [
- "405"
+ "18"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -918,26 +1296,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\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 \"value\": \"ps2973\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "GET",
+ "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==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a484a5ac-b6f3-457f-b98e-e192cdb66f17"
+ "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -947,32 +1325,35 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAACh4=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "eff8351f-c258-4ff6-9948-115535d30c89"
+ "0a983a89-425a-4d98-b42c-5796145e71e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
],
"x-ms-correlation-request-id": [
- "7ef43b68-4566-4aeb-9758-98707cb33172"
+ "d8848b46-6954-4886-92c1-f79ebb82cb8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165017Z:7ef43b68-4566-4aeb-9758-98707cb33172"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183342Z:d8848b46-6954-4886-92c1-f79ebb82cb8b"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:17 GMT"
+ "Wed, 28 Jul 2021 18:33:42 GMT"
],
"Content-Length": [
- "84"
+ "18"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -981,26 +1362,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Property not found.\",\r\n \"details\": null\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c7cbf88-b3f0-4a6f-9acf-161413eae657"
+ "0fa1ed44-69c8-4701-83d1-ec19dcba2bc7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1011,31 +1392,31 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPos=\""
+ "\"AAAAAAAACh8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a3a65fb0-5e10-4cfe-a625-dafbefdae9f1"
+ "b0fcbfc0-2dbf-42b6-b9de-26335fd286d7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "1ceca5b2-36af-4034-8e24-d19eb2d458e8"
+ "227fdf88-9643-48d0-8c2a-9aa79206c7d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164914Z:1ceca5b2-36af-4034-8e24-d19eb2d458e8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183413Z:227fdf88-9643-48d0-8c2a-9aa79206c7d4"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:14 GMT"
+ "Wed, 28 Jul 2021 18:34:13 GMT"
],
"Content-Length": [
"18"
@@ -1047,26 +1428,35 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps2973\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
- "RequestMethod": "POST",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "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": [
- "5a980633-3dfb-47e3-8683-1c7956646d9b"
+ "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
+ ],
+ "If-Match": [
+ "*"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "99"
]
},
"ResponseHeaders": {
@@ -1076,63 +1466,57 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAAPos=\""
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ffd8bff2-9bdb-4247-8cae-92abecc87cf2"
+ "bcdef3ee-55d4-495d-9cfd-ab92b2491f01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "e51d6463-e3a6-4aae-ab75-7ecdff51e646"
+ "01452b10-41d4-47be-84de-f6e9b4fac408"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164915Z:e51d6463-e3a6-4aae-ab75-7ecdff51e646"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183343Z:01452b10-41d4-47be-84de-f6e9b4fac408"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:14 GMT"
- ],
- "Content-Length": [
- "18"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 28 Jul 2021 18:33:42 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436/listValue?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNi9saXN0VmFsdWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
- "RequestMethod": "POST",
+ "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=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "018053cf-44e9-4ae9-a7c9-47ce79e4cad3"
- ],
- "Accept-Language": [
- "en-US"
+ "8fe413a9-91a3-4bbe-bf6a-4b8781c2323a"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1143,34 +1527,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPow=\""
+ "\"AAAAAAAACh8=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "4122d3f1-335e-4fa3-b918-e77cad58b429"
+ "33893af1-6406-4b73-86a9-0358792a3728"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
],
"x-ms-correlation-request-id": [
- "e7ffb687-2fa7-460a-8cfd-95a7c3c37513"
+ "d2ea5c97-2939-4620-80cf-383e893f55ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164945Z:e7ffb687-2fa7-460a-8cfd-95a7c3c37513"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183413Z:d2ea5c97-2939-4620-80cf-383e893f55ba"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:44 GMT"
+ "Wed, 28 Jul 2021 18:34:12 GMT"
],
"Content-Length": [
- "18"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1179,20 +1563,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps7785\"\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01&asyncId=5f171c8ba2ca600fe4c2976c&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjOGJhMmNhNjAwZmU0YzI5NzZjJmFzeW5jQ29kZT0yMDA=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1203,34 +1593,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPow=\""
+ "\"AAAAAAAACho=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ee40f976-eb30-420e-9a8a-43b87946467c"
+ "f21f5038-b7a7-44ce-ba90-723f9853646c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11986"
],
"x-ms-correlation-request-id": [
- "2d75d3f1-1a01-4d49-9d22-d53c51fc2d04"
+ "c7f9a879-6289-48b7-889b-8234a6397d7a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164945Z:2d75d3f1-1a01-4d49-9d22-d53c51fc2d04"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183413Z:c7f9a879-6289-48b7-889b-8234a6397d7a"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:44 GMT"
+ "Wed, 28 Jul 2021 18:34:13 GMT"
],
"Content-Length": [
- "405"
+ "430"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1239,26 +1629,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps4436\",\r\n \"properties\": {\r\n \"displayName\": \"ps6493\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "663958d5-1b88-47df-981d-45aa63d8749c"
+ "31be54c4-bd53-4532-8484-5dc6db55cd7f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1269,34 +1659,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPoo=\""
+ "\"AAAAAAAACiA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "861b2a6d-adaa-4d32-8746-03d26ab6dfdc"
+ "4d053144-4d3a-4576-8a90-48300ea2f822"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11984"
],
"x-ms-correlation-request-id": [
- "1a677cb9-3728-48de-98db-e0e86bfc9516"
+ "88be87ad-ae1f-44d7-8fb0-93969febc6a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164945Z:1a677cb9-3728-48de-98db-e0e86bfc9516"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183444Z:88be87ad-ae1f-44d7-8fb0-93969febc6a3"
],
"Date": [
- "Tue, 21 Jul 2020 16:49:45 GMT"
+ "Wed, 28 Jul 2021 18:34:43 GMT"
],
"Content-Length": [
- "429"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1305,26 +1695,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"value\": \"ps2042\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71bbaa0c-ea01-4b86-a28b-f20e42896537"
+ "c17616b6-2be1-4a1a-a986-4c0f2cdc5514"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1334,35 +1724,32 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAAPo0=\""
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0b461bde-f9bd-4fa3-844c-71834809378e"
+ "a243f8f7-7288-473a-855b-f54613574972"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11982"
],
"x-ms-correlation-request-id": [
- "359a9a18-403c-49c3-8e26-762954e1a97f"
+ "49ad37dc-711d-450d-a2dd-d9139d6472e9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165016Z:359a9a18-403c-49c3-8e26-762954e1a97f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183445Z:49ad37dc-711d-450d-a2dd-d9139d6472e9"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:16 GMT"
+ "Wed, 28 Jul 2021 18:34:44 GMT"
],
"Content-Length": [
- "404"
+ "86"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1371,26 +1758,35 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\r\n \"tags\": [\r\n \"sdk\",\r\n \"powershell\",\r\n \"test\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"NamedValue not found.\",\r\n \"details\": null\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"secret\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ba13678-6543-4a02-9a5e-3270ff1db17b"
+ "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ ],
+ "If-Match": [
+ "*"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "48"
]
},
"ResponseHeaders": {
@@ -1400,54 +1796,57 @@
"Pragma": [
"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"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "c6d30f12-5ea3-4fe7-b2f4-058cc9a9cb4d"
+ "2e15dedb-6627-4d7a-af35-b101de2247f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
],
"x-ms-correlation-request-id": [
- "98fe4c2b-0b13-48be-bd01-601d306a44de"
+ "99ec4731-5d0e-4e9f-aefe-7ba45492a421"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165017Z:98fe4c2b-0b13-48be-bd01-601d306a44de"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183413Z:99ec4731-5d0e-4e9f-aefe-7ba45492a421"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:17 GMT"
- ],
- "Content-Length": [
- "84"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Wed, 28 Jul 2021 18:34:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Property not found.\",\r\n \"details\": null\r\n }\r\n}",
- "StatusCode": 404
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01&asyncId=5f171caaa2ca600fe4c29770&asyncCode=200",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAxJmFzeW5jSWQ9NWYxNzFjYWFhMmNhNjAwZmU0YzI5NzcwJmFzeW5jQ29kZT0yMDA=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "31be54c4-bd53-4532-8484-5dc6db55cd7f"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1458,34 +1857,34 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPo0=\""
+ "\"AAAAAAAACiA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ce559595-1b5c-4f80-a10d-725fa3f82fde"
+ "ab5b9a7e-fedc-41b2-9c66-a3da57f79575"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11985"
],
"x-ms-correlation-request-id": [
- "2a60e1da-ca2d-44ec-b04b-269f36da5f0d"
+ "beccfa14-8dac-4f6c-b61c-20d8c71631ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165016Z:2a60e1da-ca2d-44ec-b04b-269f36da5f0d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183443Z:beccfa14-8dac-4f6c-b61c-20d8c71631ed"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:16 GMT"
+ "Wed, 28 Jul 2021 18:34:43 GMT"
],
"Content-Length": [
- "404"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1494,17 +1893,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821\",\r\n \"type\": \"Microsoft.ApiManagement/service/namedValues\",\r\n \"name\": \"ps3821\",\r\n \"properties\": {\r\n \"displayName\": \"ps383\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b289cfea-9ff8-40a4-8680-d73e3f3155a6"
+ "27ed02e3-5089-4016-a4d4-25c71217c6ad"
],
"If-Match": [
"*"
@@ -1513,10 +1912,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1529,8 +1928,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "61a7fb2b-fd62-407a-8c0e-14cbafa3170e"
+ "0837a526-4046-41f3-b0ed-9701c306a735"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1539,16 +1941,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "1c9b559a-9966-4499-a380-73585f2821bf"
+ "2bdce6c7-3a19-4ea7-9b9a-3cee6dfe936f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165017Z:1c9b559a-9966-4499-a380-73585f2821bf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183444Z:2bdce6c7-3a19-4ea7-9b9a-3cee6dfe936f"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:17 GMT"
+ "Wed, 28 Jul 2021 18:34:44 GMT"
],
"Expires": [
"-1"
@@ -1561,13 +1960,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps4436?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzNDQzNj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps9653?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzOTY1Mz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "caf15eb9-9cc0-4fda-a194-edf5859272eb"
+ "2bcc809a-d100-4fa0-8659-62adca0151f3"
],
"If-Match": [
"*"
@@ -1576,10 +1975,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1592,8 +1991,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "956b8781-80fb-4055-86c6-336fc6f96c6c"
+ "b9b677ed-0c64-4303-aaaf-537b417dd1d6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1602,16 +2004,13 @@
"14997"
],
"x-ms-correlation-request-id": [
- "020b929f-fb88-4820-bf8a-be9bb9f91d38"
+ "f7a64682-3839-45a9-a6cf-fe85f99c5d19"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165017Z:020b929f-fb88-4820-bf8a-be9bb9f91d38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210728T183445Z:f7a64682-3839-45a9-a6cf-fe85f99c5d19"
],
"Date": [
- "Tue, 21 Jul 2020 16:50:17 GMT"
+ "Wed, 28 Jul 2021 18:34:44 GMT"
],
"Expires": [
"-1"
@@ -1621,13 +2020,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps3821?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMzgyMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/namedValues/ps2920?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL25hbWVkVmFsdWVzL3BzMjkyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a20896c0-62a5-43d3-b5dd-e87c73bd9d94"
+ "6e70d07b-3998-4d5e-a7b0-090ba66e7a85"
],
"If-Match": [
"*"
@@ -1636,10 +2035,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1652,8 +2051,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e86d37dd-11d3-4ae0-9fac-cd9a636cd1ee"
+ "74fb3bf6-f6ab-4d47-8f31-11bba6c0ca36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1662,16 +2064,76 @@
"14998"
],
"x-ms-correlation-request-id": [
- "f73adf6e-c6d4-4838-9e60-494ab0e10733"
+ "4a02e6a9-6ddf-4f8c-b348-d0c5cd28a943"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T165017Z:f73adf6e-c6d4-4838-9e60-494ab0e10733"
+ "WESTUS:20210728T183445Z:4a02e6a9-6ddf-4f8c-b348-d0c5cd28a943"
+ ],
+ "Date": [
+ "Wed, 28 Jul 2021 18:34:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9c9d7629-b27a-455b-ace1-90374e6ab213"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-Content-Type-Options": [
"nosniff"
],
+ "x-ms-request-id": [
+ "0a890018-b05f-40c4-bba0-ead739a17c6b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "eec64bb5-bfd4-4dde-b786-9d7c12ad9273"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210728T183445Z:eec64bb5-bfd4-4dde-b786-9d7c12ad9273"
+ ],
"Date": [
- "Tue, 21 Jul 2020 16:50:17 GMT"
+ "Wed, 28 Jul 2021 18:34:45 GMT"
],
"Expires": [
"-1"
@@ -1686,12 +2148,14 @@
],
"Names": {
"": [
- "ps3821",
- "ps383",
- "ps2042",
- "ps4436",
- "ps6493",
- "ps7785"
+ "ps2920",
+ "ps4604",
+ "ps5500",
+ "ps7160",
+ "ps7105",
+ "ps9653",
+ "ps9075",
+ "ps2973"
]
},
"Variables": {
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 7c62b8962f85..6ba282a9cbb5 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed03a444-1286-4fa6-b363-68bb71b301c6"
+ "5f443762-3bf9-48f0-a64b-e193b6eb2471"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "78fad34d-1c46-4d39-86ba-7b39c4f42a78"
+ "759e07bc-3467-4154-8df1-2d9a584b60e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "24f91b08-747f-434b-bf6a-79dca096cb3e"
+ "036fd807-9093-4ea9-b930-e2a1090808ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164410Z:24f91b08-747f-434b-bf6a-79dca096cb3e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001627Z:036fd807-9093-4ea9-b930-e2a1090808ae"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:10 GMT"
+ "Tue, 13 Jul 2021 00:16:26 GMT"
],
"Content-Length": [
"2859"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cae00baf-9652-4ae1-ae8c-d9f460106d27"
+ "50031142-73c3-4494-b6f5-a6bc5f28ee30"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -95,8 +95,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e73fae4e-bc96-448b-b64d-115e26383364"
+ "32992469-66a7-4628-95a7-720593e346e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +108,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "8840921b-b827-4399-8dfa-65fbfd65c413"
+ "29b8fa04-b8a0-41a8-aabc-32c67fced288"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164410Z:8840921b-b827-4399-8dfa-65fbfd65c413"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001627Z:29b8fa04-b8a0-41a8-aabc-32c67fced288"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:10 GMT"
+ "Tue, 13 Jul 2021 00:16:27 GMT"
],
"Content-Length": [
"931"
@@ -130,22 +130,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2405d5cb-eee4-4059-a1f4-868bbb820211"
+ "715d004a-f495-468c-8d78-ce291f0d113c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -161,8 +161,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cfcace9c-9981-4c07-9d45-c71eded77c6b"
+ "6d1943fd-b837-464d-8319-22575377bf1c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +174,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "020cd301-36f1-4928-a75b-2e168d2b092f"
+ "595e9ee5-8d58-4843-87d6-af3b9fdeb995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164410Z:020cd301-36f1-4928-a75b-2e168d2b092f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001627Z:595e9ee5-8d58-4843-87d6-af3b9fdeb995"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:10 GMT"
+ "Tue, 13 Jul 2021 00:16:27 GMT"
],
"Content-Length": [
"933"
@@ -196,22 +196,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f1bfc1d-9870-4f52-99cc-4656a0b19caf"
+ "fa3e8443-4004-451d-847d-de0e4ed68f88"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -227,8 +227,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "cada1246-5182-4b81-b148-fe61d4b00fd2"
+ "ce6b7e7c-d810-4d5e-be77-275f67c137e9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +240,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "23960317-44f2-4bf8-b372-38b30df6aff5"
+ "e9d30af3-e646-476e-94ec-3c3f3fb51bbf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164411Z:23960317-44f2-4bf8-b372-38b30df6aff5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001627Z:e9d30af3-e646-476e-94ec-3c3f3fb51bbf"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:10 GMT"
+ "Tue, 13 Jul 2021 00:16:27 GMT"
],
"Content-Length": [
"737"
@@ -262,28 +262,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"scope\": \"/apis\",\r\n \"displayName\": \"ps9572\",\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\",\r\n \"state\": \"active\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4519311e-39a2-471f-bd72-94880982a120"
+ "d89d3467-dccb-464b-9631-9987259dfb43"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "164"
+ "163"
]
},
"ResponseHeaders": {
@@ -294,13 +294,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPbk=\""
+ "\"AAAAAAABARA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "38327626-9e4b-481a-9b14-251f083829be"
+ "bb4e398a-c405-4efc-9a25-4edc2c81bbfc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,19 +312,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "c957ccd8-ccc7-4254-b65c-a639b6b46019"
+ "02cfb3d8-b611-4c66-ac94-98d5d9282ba8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164411Z:c957ccd8-ccc7-4254-b65c-a639b6b46019"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001628Z:02cfb3d8-b611-4c66-ac94-98d5d9282ba8"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:11 GMT"
+ "Tue, 13 Jul 2021 00:16:28 GMT"
],
"Content-Length": [
- "752"
+ "751"
],
"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/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\r\n \"properties\": {\r\n \"scope\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/apis\",\r\n \"displayName\": \"ps9572\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.2369986Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1befc243-b6e3-461d-b952-930320a749d1"
+ "2e62fb82-263f-4127-8a3a-fe2779bc3c27"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,13 +360,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPbk=\""
+ "\"AAAAAAABARA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "35730c35-6560-4fd0-9441-d6492af7c086"
+ "9f9a65a9-0ac0-4f61-a9f7-edd18bc47a36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,19 +378,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "f3e9683d-cd6a-49b8-bd5f-76adac3caab1"
+ "e846a46f-b03f-441e-9dd3-d5b219380234"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164411Z:f3e9683d-cd6a-49b8-bd5f-76adac3caab1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001628Z:e846a46f-b03f-441e-9dd3-d5b219380234"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:11 GMT"
+ "Tue, 13 Jul 2021 00:16:28 GMT"
],
"Content-Length": [
- "47"
+ "46"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,26 +396,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps5034\",\r\n \"secondaryKey\": \"ps2307\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps7489\",\r\n \"secondaryKey\": \"ps818\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "42a4afb1-cea9-489d-956a-f194b64920fa"
+ "9815f5c8-8735-4218-b39d-3f8298125ad7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,13 +426,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPbw=\""
+ "\"AAAAAAABARQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "da3645af-59b7-430f-9991-90d496e6556d"
+ "4fd4444b-3feb-4ff1-8250-e96316537fba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,16 +444,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "57494c3e-d44f-4967-bf9e-451945b05bbc"
+ "df052037-1cca-4a80-925a-06e3b353c4d9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164412Z:57494c3e-d44f-4967-bf9e-451945b05bbc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001630Z:df052037-1cca-4a80-925a-06e3b353c4d9"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:12 GMT"
+ "Tue, 13 Jul 2021 00:16:29 GMT"
],
"Content-Length": [
"47"
@@ -462,17 +462,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps5144\",\r\n \"secondaryKey\": \"ps4420\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps2935\",\r\n \"secondaryKey\": \"ps9155\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps9795\",\r\n \"primaryKey\": \"ps5144\",\r\n \"secondaryKey\": \"ps4420\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac731560-f301-4d72-9a71-dc49d23abe4f"
+ "2e93b56c-7510-4ee0-b534-2bc52700de7e"
],
"If-Match": [
"*"
@@ -481,10 +481,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -500,11 +500,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABARQ=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "1f9f084c-7074-49ef-ae7e-45001e2e60b8"
+ "c062acc2-ed09-4dd3-a369-f6c65a37cbe2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -513,41 +519,44 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1ebda6f1-4fe8-417e-aa7b-54be33074e40"
+ "8cc2cc45-692b-4652-943d-b79bfd2bec73"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164412Z:1ebda6f1-4fe8-417e-aa7b-54be33074e40"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001630Z:8cc2cc45-692b-4652-943d-b79bfd2bec73"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:11 GMT"
+ "Tue, 13 Jul 2021 00:16:29 GMT"
+ ],
+ "Content-Length": [
+ "1367"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7aba5b1f-c81a-458b-a5cc-a10e24254b59"
+ "2e93b56c-7510-4ee0-b534-2bc52700de7e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -558,13 +567,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPbw=\""
+ "\"AAAAAAABARQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e7c77af4-9f9a-48ae-819f-be85b1b22411"
+ "1e89abad-bd50-4795-8a0d-1d0f4cb17c84"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,19 +585,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "f5042f5f-b3c0-4adc-8c5a-13aa589a6f08"
+ "d0f11173-0965-4022-997a-32a5e5049b3e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164412Z:f5042f5f-b3c0-4adc-8c5a-13aa589a6f08"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001630Z:d0f11173-0965-4022-997a-32a5e5049b3e"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:11 GMT"
+ "Tue, 13 Jul 2021 00:16:29 GMT"
],
"Content-Length": [
- "878"
+ "877"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -594,26 +603,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\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\": \"ps9795\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.237Z\",\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/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}",
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/JGZpbHRlcj1wcm9wZXJ0aWVzL3Njb3BlJTIwZXElMjAnL2FwaXMnJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b90950d8-a3d8-4021-849a-f4b512958f14"
+ "dc7cde8f-f391-4338-82a7-199f857cac46"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -626,8 +635,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "612f8b5a-bf3f-41e0-92de-b31662f34d24"
+ "48cdc693-2049-4b90-8a12-0d52532fe919"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -636,19 +648,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "e9ddedef-5c99-4ef6-a9a1-47f096a85b38"
+ "97046be7-0112-4af7-b03b-db45afd60a85"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164412Z:e9ddedef-5c99-4ef6-a9a1-47f096a85b38"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001630Z:97046be7-0112-4af7-b03b-db45afd60a85"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:12 GMT"
+ "Tue, 13 Jul 2021 00:16:29 GMT"
],
"Content-Length": [
- "986"
+ "985"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -657,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/ps8611\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps8611\",\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\": \"ps9795\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:44:11.237Z\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps8611?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM4NjExP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps9098?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM5MDk4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c251fe5f-48eb-4cdb-82e1-806869bf2e44"
+ "4e34d40d-f01f-4ba8-a1c2-815644119187"
],
"If-Match": [
"*"
@@ -676,10 +685,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -692,8 +701,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "79bfd9c3-4ba2-492f-97cf-419c52f676fd"
+ "a0813fcf-8e8b-429b-a1e6-d8875cbf2eb8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,16 +714,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "4328e7e3-759c-4f21-b4cc-f3846934b202"
+ "7cd53f48-538f-47f6-b10d-297d6571af5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164412Z:4328e7e3-759c-4f21-b4cc-f3846934b202"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001630Z:7cd53f48-538f-47f6-b10d-297d6571af5d"
],
"Date": [
- "Tue, 21 Jul 2020 16:44:12 GMT"
+ "Tue, 13 Jul 2021 00:16:30 GMT"
],
"Expires": [
"-1"
@@ -726,13 +735,13 @@
],
"Names": {
"": [
- "ps8611",
- "ps9572",
- "ps5034",
- "ps2307",
- "ps9795",
- "ps5144",
- "ps4420"
+ "ps9098",
+ "ps8964",
+ "ps7489",
+ "ps818",
+ "ps2642",
+ "ps2935",
+ "ps9155"
]
},
"Variables": {
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 c0868f4f0b45..25d3318d8f6b 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83ceecd5-3432-40ca-87bf-892d972b852e"
+ "163dfbdf-efb2-4f4d-9566-32b91274096a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0962af06-7329-448a-9a82-e2d3383f3da7"
+ "7818b46a-3cc9-496d-941b-4cf03db7948b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "53687841-35d7-420d-98ed-34e91f624be9"
+ "f1804831-0f2b-447b-b6ff-7b5d15056a8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164123Z:53687841-35d7-420d-98ed-34e91f624be9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001322Z:f1804831-0f2b-447b-b6ff-7b5d15056a8b"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:23 GMT"
+ "Tue, 13 Jul 2021 00:13:22 GMT"
],
"Content-Length": [
"2859"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "191ada49-5fe1-42e1-ab03-74b4ceb58c2e"
+ "e79af4ba-5885-43f3-b5be-e49113543cb2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -95,8 +95,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "61930e22-600a-4b77-b4d5-1d38cafc4d2f"
+ "f3d4d768-0b6e-446d-bace-b6a3400c6f6f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +108,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f95c0ec5-50fc-4f9c-9a15-029eba9c3e39"
+ "b6e6f143-a4da-475b-b185-070425a67a33"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164123Z:f95c0ec5-50fc-4f9c-9a15-029eba9c3e39"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001322Z:b6e6f143-a4da-475b-b185-070425a67a33"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:23 GMT"
+ "Tue, 13 Jul 2021 00:13:22 GMT"
],
"Content-Length": [
"931"
@@ -130,22 +130,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e5f9d398d0050070001/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNWY5ZDM5OGQwMDUwMDcwMDAxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e867f2a-190c-4b4d-b6b1-66f9f6160294"
+ "0af2edb9-4bf0-4df2-8143-a340f6c9a4b2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -161,8 +161,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a89f75de-ec84-4cbf-a401-9047528054e7"
+ "413a966e-547f-492e-bc3e-212ade719a7c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -171,16 +174,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "6df76fa2-1f6e-4c53-854e-c11c9d5d382e"
+ "dbba592c-842f-4ffd-b01a-a776a42447dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164123Z:6df76fa2-1f6e-4c53-854e-c11c9d5d382e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001322Z:dbba592c-842f-4ffd-b01a-a776a42447dc"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:23 GMT"
+ "Tue, 13 Jul 2021 00:13:22 GMT"
],
"Content-Length": [
"99"
@@ -196,22 +196,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f54e82a-42d7-45f8-8666-0bef99aa5986"
+ "2a46bf76-e383-4ca9-bdad-33250afae1a2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -227,8 +227,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0ad3e616-6902-4726-b9fe-d05da1850e51"
+ "5dd12459-3b44-4631-bb89-c93b3e84c707"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -237,16 +240,13 @@
"11997"
],
"x-ms-correlation-request-id": [
- "d2a64474-e711-4958-9574-f2ea685e4d31"
+ "094540f7-2f6a-48b6-be68-fcf48861b1dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164124Z:d2a64474-e711-4958-9574-f2ea685e4d31"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001323Z:094540f7-2f6a-48b6-be68-fcf48861b1dc"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:24 GMT"
+ "Tue, 13 Jul 2021 00:13:23 GMT"
],
"Content-Length": [
"933"
@@ -262,22 +262,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/5eab1e609d398d0050070002/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvNWVhYjFlNjA5ZDM5OGQwMDUwMDcwMDAyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4151dfb9-8e17-42e8-93c9-20344d143aae"
+ "3afed9c7-95aa-40ce-943a-2d24be838ce2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -293,8 +293,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ae86477b-6200-4a22-9609-2303ce61828d"
+ "fcf1714c-6d36-4f43-a7c7-57f732dfd459"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -303,16 +306,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "8ffea865-ad4a-4658-926c-e4cb3c80ed07"
+ "a8c977bf-fd59-4382-9083-77d39677c2b7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164124Z:8ffea865-ad4a-4658-926c-e4cb3c80ed07"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001323Z:a8c977bf-fd59-4382-9083-77d39677c2b7"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:24 GMT"
+ "Tue, 13 Jul 2021 00:13:23 GMT"
],
"Content-Length": [
"99"
@@ -328,22 +328,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97bdc686-0b35-4b98-b7fc-38983795190d"
+ "bfc65629-1bf1-479f-a2db-aacebbf8d8d2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -359,8 +359,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "2f744187-ef4d-4edc-81ff-72caeb93fb95"
+ "17b06b3a-aef7-4954-aafa-12b22c7f9ace"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -369,16 +372,13 @@
"11996"
],
"x-ms-correlation-request-id": [
- "b633ecfe-3843-43f6-a075-617f03d53eb1"
+ "2893dc58-2a6c-4f36-899f-cfdc2b52ccec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164124Z:b633ecfe-3843-43f6-a075-617f03d53eb1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001323Z:2893dc58-2a6c-4f36-899f-cfdc2b52ccec"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:24 GMT"
+ "Tue, 13 Jul 2021 00:13:23 GMT"
],
"Content-Length": [
"737"
@@ -394,22 +394,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/master/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvbWFzdGVyL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ebb129e-1179-412b-be0f-7db494d38f8d"
+ "011384e2-c7dc-4523-b709-5755bbd3124a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -425,8 +425,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "29c539ac-4c58-4856-b1d1-cb3397e79ba9"
+ "2fa5217c-e885-4380-8ee6-ec7871491955"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,16 +438,13 @@
"1197"
],
"x-ms-correlation-request-id": [
- "d91e462b-50ee-4a67-a05e-3389d5b42930"
+ "6e500eed-62fe-4bb3-bf35-781c97e369f7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164124Z:d91e462b-50ee-4a67-a05e-3389d5b42930"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001323Z:6e500eed-62fe-4bb3-bf35-781c97e369f7"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:24 GMT"
+ "Tue, 13 Jul 2021 00:13:23 GMT"
],
"Content-Length": [
"99"
@@ -460,13 +460,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXI/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"subscriptionsLimit\": 100\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd25bc9a-d505-4f97-9f3c-a9d3a9a33736"
+ "9b167b1c-b266-4c95-bce5-988373958ca8"
],
"If-Match": [
"*"
@@ -475,10 +475,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -494,11 +494,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAAA//c=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "194debfe-c498-474f-ad6f-4f430401ba6d"
+ "b4d40c74-641d-4275-9a60-04973e8b99b9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -507,41 +513,44 @@
"1199"
],
"x-ms-correlation-request-id": [
- "131d32bd-0a65-4c8f-b9fb-cab5f5b5367a"
+ "6c661855-25cc-4ffc-8776-e3ad1c5e4b42"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164125Z:131d32bd-0a65-4c8f-b9fb-cab5f5b5367a"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001323Z:6c661855-25cc-4ffc-8776-e3ad1c5e4b42"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:25 GMT"
+ "Tue, 13 Jul 2021 00:13:23 GMT"
+ ],
+ "Content-Length": [
+ "577"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"ownerId\": \"/users/1\",\r\n \"scope\": \"/products/starter\",\r\n \"displayName\": \"ps3031\",\r\n \"primaryKey\": \"ps2435\",\r\n \"secondaryKey\": \"ps2518\",\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\": \"ps3509\",\r\n \"primaryKey\": \"ps8556\",\r\n \"secondaryKey\": \"ps9821\",\r\n \"state\": \"active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58dcf4a7-7485-46e8-9149-cff54d55b292"
+ "b9a3dd39-4b7e-4c9e-8cfe-17e6d0c91939"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -558,13 +567,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPRk=\""
+ "\"AAAAAAABAFA=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6ff1fa47-ec9f-4bbb-b5f9-5cf2e0489249"
+ "e2e31a2c-20ac-4202-b741-707af4026b9c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -573,19 +585,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "54bc540b-519c-4e86-90e1-afc846d030fe"
+ "a00ad990-e9c7-4775-a3bb-30921fec39e9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164126Z:54bc540b-519c-4e86-90e1-afc846d030fe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001325Z:a00ad990-e9c7-4775-a3bb-30921fec39e9"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:26 GMT"
+ "Tue, 13 Jul 2021 00:13:25 GMT"
],
"Content-Length": [
- "1366"
+ "1384"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -594,17 +603,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\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\": \"ps3031\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.6217121Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"ps2435\",\r\n \"secondaryKey\": \"ps2518\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"ps2323\",\r\n \"primaryKey\": \"ps1758\",\r\n \"secondaryKey\": \"ps8539\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec37ba1b-bae1-45d7-983a-67183d966889"
+ "1b252f27-292f-4c75-9be8-802fda6856b2"
],
"If-Match": [
"*"
@@ -613,10 +622,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -632,11 +641,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAFQ=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b0495875-6602-4d4d-a6e4-312157d97e35"
+ "6857ddbb-bdb8-4585-a981-c3fead1852a8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -645,41 +660,44 @@
"1197"
],
"x-ms-correlation-request-id": [
- "d3f25a6c-609e-49ad-95e7-80ec8116ebe3"
+ "0ccc4e7d-a241-4a24-b92c-5bfcc8f96f0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164127Z:d3f25a6c-609e-49ad-95e7-80ec8116ebe3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001326Z:0ccc4e7d-a241-4a24-b92c-5bfcc8f96f0f"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:27 GMT"
+ "Tue, 13 Jul 2021 00:13:26 GMT"
+ ],
+ "Content-Length": [
+ "1441"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed58289a-a1e0-4acb-ac73-9204c0373684"
+ "1b252f27-292f-4c75-9be8-802fda6856b2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -690,13 +708,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPRw=\""
+ "\"AAAAAAABAFQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "58c9b2f1-6d7a-4485-bf07-85284fa99f92"
+ "18cb3366-a6a0-4ded-a37c-c97d3727eac5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -705,19 +726,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "762315cd-5b25-4125-8dbf-1f9e267f066f"
+ "048fd4a7-2cfd-4762-b949-28b1ded4d7e0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164127Z:762315cd-5b25-4125-8dbf-1f9e267f066f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001326Z:048fd4a7-2cfd-4762-b949-28b1ded4d7e0"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:27 GMT"
+ "Tue, 13 Jul 2021 00:13:26 GMT"
],
"Content-Length": [
- "935"
+ "951"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -726,26 +744,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\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\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898/listSecrets?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4L2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781/listSecrets?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxL2xpc3RTZWNyZXRzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c230a965-2e94-49dd-ae0a-fca46238dc00"
+ "2157dbcb-6ccd-49e0-985e-f2879ae21153"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -756,13 +774,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPRw=\""
+ "\"AAAAAAABAFQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "75beea5a-0aa7-423d-bb2d-4e3421cfb4ce"
+ "dcca35e3-13a1-49e8-bb80-d259ed05ffad"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -771,16 +792,13 @@
"1196"
],
"x-ms-correlation-request-id": [
- "4a49bdbf-8152-45f3-9451-c27ccd98a745"
+ "c2fcdb0f-9936-47b7-b320-f42e7a4608a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164127Z:4a49bdbf-8152-45f3-9451-c27ccd98a745"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001326Z:c2fcdb0f-9936-47b7-b320-f42e7a4608a6"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:27 GMT"
+ "Tue, 13 Jul 2021 00:13:26 GMT"
],
"Content-Length": [
"47"
@@ -792,26 +810,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"ps1758\",\r\n \"secondaryKey\": \"ps8539\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryKey\": \"ps2454\",\r\n \"secondaryKey\": \"ps4942\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/products/starter/subscriptions?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3Byb2R1Y3RzL3N0YXJ0ZXIvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ae7bdce-9099-4d0a-83b4-9ff799c76da9"
+ "9ec21bf7-c1dd-489c-9acf-261b38b77315"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -824,8 +842,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0d4cf35c-9bf6-4c05-b902-39c0ed6eb5f4"
+ "d95f345d-bc72-42a3-a20e-4be20dfa9b3f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -834,19 +855,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "d6a898d3-2341-4812-8222-b4de7a5565e2"
+ "97ff9133-d408-4ee3-885d-03a0d216075b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164128Z:d6a898d3-2341-4812-8222-b4de7a5565e2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001327Z:97ff9133-d408-4ee3-885d-03a0d216075b"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:28 GMT"
+ "Tue, 13 Jul 2021 00:13:27 GMT"
],
"Content-Length": [
- "2105"
+ "2121"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -855,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/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"ps6898\",\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\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1/subscriptions?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzEvc3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb0ad458-9aea-41b2-8de3-27b0a6c28dcc"
+ "5fc331b0-1c8c-40a3-8523-618d7c993f1c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -887,8 +905,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ff9114a2-af66-403f-9bca-8ce1ec782b18"
+ "ea9ff1d5-d411-459b-9783-d0fbbc7146b5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -897,19 +918,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "b00e8aac-74e8-4703-ae1b-c2e5098d6454"
+ "1677d554-17dc-47e9-8934-c854dce7b4e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164129Z:b00e8aac-74e8-4703-ae1b-c2e5098d6454"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001328Z:1677d554-17dc-47e9-8934-c854dce7b4e7"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:29 GMT"
+ "Tue, 13 Jul 2021 00:13:28 GMT"
],
"Content-Length": [
- "3103"
+ "3119"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -918,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/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"ps6898\",\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\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\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/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}",
"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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnM/JGZpbHRlcj1wcm9wZXJ0aWVzL3Njb3BlJTIwZXElMjAnL3Byb2R1Y3RzL3N0YXJ0ZXInJTIwYW5kJTIwcHJvcGVydGllcy9vd25lcklkJTIwZXElMjAnMScmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "245cf253-d029-48fd-afce-ef7c992e4739"
+ "05118c6a-095a-4dd3-9f1c-623cce29ca04"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -950,8 +968,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "78249b46-f307-43d4-9dbb-cdd6b328b7f7"
+ "dc180a39-38d8-4b46-9fe9-d6ca3b6c0c98"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -960,19 +981,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "646f9aa7-4ca7-46fd-9a74-61d2aea8bded"
+ "c8b08084-0e25-470e-86c2-61522b5a1dde"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164129Z:646f9aa7-4ca7-46fd-9a74-61d2aea8bded"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001328Z:c8b08084-0e25-470e-86c2-61522b5a1dde"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:29 GMT"
+ "Tue, 13 Jul 2021 00:13:28 GMT"
],
"Content-Length": [
- "2053"
+ "2069"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -981,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/ps6898\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"ps6898\",\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\": \"ps2323\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2020-07-21T16:41:25.623Z\",\r\n \"startDate\": null,\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps6898?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM2ODk4P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/subscriptions/ps4781?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3N1YnNjcmlwdGlvbnMvcHM0NzgxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92366edc-2040-436c-a888-2c4b530bed02"
+ "afd42db6-7dc6-4eaa-8777-d735a6a5bc13"
],
"If-Match": [
"*"
@@ -1000,10 +1018,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1016,8 +1034,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "17e92f1f-51a9-4dc8-873f-035ad2463153"
+ "ce13bc32-72d5-4731-bfa8-26f6094505ba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1026,16 +1047,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b0f2692b-f057-48e4-b4ff-56c85f874204"
+ "d5c8c2a0-9b8e-497c-9021-caf99a38e859"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164129Z:b0f2692b-f057-48e4-b4ff-56c85f874204"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001329Z:d5c8c2a0-9b8e-497c-9021-caf99a38e859"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:29 GMT"
+ "Tue, 13 Jul 2021 00:13:29 GMT"
],
"Expires": [
"-1"
@@ -1050,13 +1068,13 @@
],
"Names": {
"": [
- "ps6898",
- "ps3031",
- "ps2435",
- "ps2518",
- "ps2323",
- "ps1758",
- "ps8539"
+ "ps4781",
+ "ps3509",
+ "ps8556",
+ "ps9821",
+ "ps1314",
+ "ps2454",
+ "ps4942"
]
},
"Variables": {
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 4f6814cd9b60..21bbd7c2456b 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c69db0b6-3e3f-4b59-b21b-b681de5d5902"
+ "38a96fc9-38d3-42aa-a129-42ad9f00bfc4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -27,13 +27,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAALyAAAAAAAAAAAA==\""
+ "\"AAAAAAABAEwAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8d88d837-ac5e-49ff-bfa6-1136b85c2542"
+ "8dec4d77-1a49-44b8-99cb-97f520996535"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -42,19 +45,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "2ccf4111-4472-445b-a2da-7f51e56f39d3"
+ "adee698a-183a-4d0d-86a6-9926de562d53"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164119Z:2ccf4111-4472-445b-a2da-7f51e56f39d3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T204803Z:adee698a-183a-4d0d-86a6-9926de562d53"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:19 GMT"
+ "Thu, 15 Jul 2021 20:48:03 GMT"
],
"Content-Length": [
- "74"
+ "382"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19db0907-f880-48b4-bd3b-b876d20eea36"
+ "39d81ba8-6f56-4e27-a22f-8505ea9d3158"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -93,13 +93,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPRQAAAAAAAAAAA==\""
+ "\"AAAAAAABApEAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "96387a12-78c6-4576-be97-4ab99381329e"
+ "e39281f5-fb93-4e3a-9ef9-e250a0e72e89"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -108,19 +111,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "8b376a42-b6f0-40f1-bcc7-2ddfefeba992"
+ "3a409d95-dbd4-42ab-ab5a-90e69e9f15b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164120Z:8b376a42-b6f0-40f1-bcc7-2ddfefeba992"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T204804Z:3a409d95-dbd4-42ab-ab5a-90e69e9f15b4"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:19 GMT"
+ "Thu, 15 Jul 2021 20:48:03 GMT"
],
"Content-Length": [
- "73"
+ "381"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -129,26 +129,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": true\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7cff416c-32ca-462e-9e93-9353330029bf"
+ "03cdff3d-e505-443a-882d-f0a5e301c877"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -159,13 +159,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPRUAAAAAAAAAAA==\""
+ "\"AAAAAAABApIAAAAAAAAAAA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0cf6676d-93df-4eb3-9f5a-5f4d06ae4b76"
+ "a897c541-21e7-4209-83a4-80bafb55fe07"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -174,19 +177,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "0e68cfa9-70ca-44fb-bf7c-be38ff40c34d"
+ "657fea32-c96a-400b-9cbe-1ad59813479b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164120Z:0e68cfa9-70ca-44fb-bf7c-be38ff40c34d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T204804Z:657fea32-c96a-400b-9cbe-1ad59813479b"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:20 GMT"
+ "Thu, 15 Jul 2021 20:48:04 GMT"
],
"Content-Length": [
- "74"
+ "382"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -195,17 +195,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": false\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8832bf0c-c010-462c-bee3-f5f13ef3ee81"
+ "39d81ba8-6f56-4e27-a22f-8505ea9d3158"
],
"If-Match": [
"*"
@@ -214,10 +214,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -233,11 +233,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABApEAAAAAAAAAAA==\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "60b5d913-4c34-4906-a958-1359f03b0c16"
+ "cd725128-4592-4e8d-9436-25dcf7ce891f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,32 +252,35 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a754b380-7061-4777-925a-4a8b470395d4"
+ "f9c2e945-da1c-41c5-8f9f-e7957886df23"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164119Z:a754b380-7061-4777-925a-4a8b470395d4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T204804Z:f9c2e945-da1c-41c5-8f9f-e7957886df23"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:19 GMT"
+ "Thu, 15 Jul 2021 20:48:03 GMT"
+ ],
+ "Content-Length": [
+ "553"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3M/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9fe98719-4fb3-4aaa-81eb-e7db3c39970c"
+ "03cdff3d-e505-443a-882d-f0a5e301c877"
],
"If-Match": [
"*"
@@ -280,10 +289,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -299,11 +308,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABApIAAAAAAAAAAA==\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "18cca37f-3153-47a3-9711-559048000cac"
+ "ab22be59-e09a-4b7a-a581-9aaaa77421fa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -312,23 +327,26 @@
"1198"
],
"x-ms-correlation-request-id": [
- "fc1d165f-b167-47a2-8182-6533fdf3edfa"
+ "ace96c14-982d-4eb5-96e4-fa6e1efd6775"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164120Z:fc1d165f-b167-47a2-8182-6533fdf3edfa"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210715T204804Z:ace96c14-982d-4eb5-96e4-fa6e1efd6775"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:20 GMT"
+ "Thu, 15 Jul 2021 20:48:03 GMT"
+ ],
+ "Content-Length": [
+ "554"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
}
],
"Names": {},
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 cca5efa8c924..a4fd59d24512 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,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/access/git?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9hY2Nlc3MvZ2l0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
- "RequestMethod": "GET",
+ "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==",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e5d1416-8c34-42e4-b3ea-09c5b893861e"
+ "426b1566-a10b-451c-81a6-23e83bff9c1d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -32,29 +32,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "b525785c-96d5-477d-be22-413357b2b130"
+ "09d162ce-1e14-499d-af70-15f51bde336f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "f7c56ed3-4f43-418b-9063-fef7f1ddf6ce"
+ "663f10c3-3611-4a76-8bcc-28c7d50c0459"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163659Z:f7c56ed3-4f43-418b-9063-fef7f1ddf6ce"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212216Z:663f10c3-3611-4a76-8bcc-28c7d50c0459"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:58 GMT"
+ "Wed, 28 Jul 2021 21:22:15 GMT"
],
"Content-Length": [
- "65"
+ "271"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": null,\r\n \"secondaryKey\": null,\r\n \"enabled\": true\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5e3c800-60c9-428f-9795-d16729610524"
+ "fd122a78-c51a-4ede-9140-a4e0db93771b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -95,29 +95,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "e638b5b5-26e9-4ac2-9876-587e60e672ef"
+ "bb443204-7e38-48df-8f70-fa17795b9f07"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "454851b3-5605-4a3c-b369-109940d67d1f"
+ "14dfcd55-8d1e-4ea9-9d10-f82a71d36ebc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163700Z:454851b3-5605-4a3c-b369-109940d67d1f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212216Z:14dfcd55-8d1e-4ea9-9d10-f82a71d36ebc"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:59 GMT"
+ "Wed, 28 Jul 2021 21:22:15 GMT"
],
"Content-Length": [
- "310"
+ "810"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -126,26 +126,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"e6d0a3ac0e9a3dc8f123543a010e30c5bc5fed80\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-06-29T23:31:25.2462656Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:36:41.9091266Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5efa79b7a2ca601994fb7d21\"\r\n}",
+ "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\": \"2f8746faf42b4ed951c11aabe30a26b7dfca151d\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-07-28T21:20:45.4881258Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:20:45.4881258Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101ca1346346111804bdc04\"\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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "497c0c89-47bd-4c75-a2c2-31f69e22e2d7"
+ "71f6b78d-15d5-4a81-9735-b3a4b52eb861"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -158,29 +158,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "543d1d8a-6ad8-4c86-891f-b6da5f246d91"
+ "533573e2-227f-4a5a-8ff4-72a8c6c257c2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11996"
],
"x-ms-correlation-request-id": [
- "b37c2e05-316b-4b3d-a46e-77eed2c7ed54"
+ "b4bfe039-6cad-4636-8143-e7393b95bab2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163801Z:b37c2e05-316b-4b3d-a46e-77eed2c7ed54"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212247Z:b4bfe039-6cad-4636-8143-e7393b95bab2"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:00 GMT"
+ "Wed, 28 Jul 2021 21:22:47 GMT"
],
"Content-Length": [
- "308"
+ "809"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -189,26 +189,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"3191e287ef2b3f39bb2216dfe9fa443cf7198795\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-07-21T16:37:34.5809747Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:36:41.9091266Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2\"\r\n}",
+ "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\": \"ae6def22e302a460fe6b1adf6483d989020849a2\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-07-28T21:22:31.8170374Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:20:45.4881258Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101ca8846346111804bdc06\"\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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/syncState?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3N5bmNTdGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5cc7811d-899b-4bce-8719-da35ede3fd9c"
+ "f7b60ebd-9eb2-4a54-a4a4-68654389b8eb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -221,29 +221,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "17cf34b4-8e1e-45c7-afbb-e131574faa48"
+ "9f343455-67ce-497a-9201-f580df1533f0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11991"
],
"x-ms-correlation-request-id": [
- "87df6eb3-0caa-4ade-8b1c-e978c4f4ff45"
+ "d1f63fc4-b3d2-4879-846e-5a2c8f9f3973"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163902Z:87df6eb3-0caa-4ade-8b1c-e978c4f4ff45"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212348Z:d1f63fc4-b3d2-4879-846e-5a2c8f9f3973"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:01 GMT"
+ "Wed, 28 Jul 2021 21:23:48 GMT"
],
"Content-Length": [
- "309"
+ "810"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -252,26 +252,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"3191e287ef2b3f39bb2216dfe9fa443cf7198795\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2020-07-21T16:38:52.9247515Z\",\r\n \"configurationChangeDate\": \"2020-07-21T16:38:52.9247515Z\",\r\n \"lastOperationId\": \"/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6\"\r\n}",
+ "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\": \"ae6def22e302a460fe6b1adf6483d989020849a2\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2021-07-28T21:23:42.6769313Z\",\r\n \"configurationChangeDate\": \"2021-07-28T21:23:42.6769313Z\",\r\n \"lastOperationId\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101cac546346111804bdc0a\"\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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3NhdmU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53050938-4910-4c95-922a-c35439837a37"
+ "2f50bec8-a303-438d-8026-ab54d5db9f45"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -288,31 +288,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101ca8846346111804bdc06?api-version=2020-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "48f4c365-4a8c-4563-a55a-aeb0751cfaf1"
+ "8c072d4e-8dec-4c81-8dbf-e01900d8ba2f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "05fafed5-05ed-405e-9961-d6dd86f6c57d"
+ "bf075316-188f-434d-a1b4-5670a65724a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163700Z:05fafed5-05ed-405e-9961-d6dd86f6c57d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212216Z:bf075316-188f-434d-a1b4-5670a65724a0"
],
"Date": [
- "Tue, 21 Jul 2020 16:36:59 GMT"
+ "Wed, 28 Jul 2021 21:22:16 GMT"
],
"Content-Length": [
"33"
@@ -324,20 +324,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"6101ca8846346111804bdc06\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101ca8846346111804bdc06?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjEwMWNhODg0NjM0NjExMTgwNGJkYzA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f50bec8-a303-438d-8026-ab54d5db9f45"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -347,92 +350,32 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "de9d0215-c681-4d21-acb7-d2d0be717a4a"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-correlation-request-id": [
- "f627a4c5-41f4-4432-bb49-ce7aa9918fef"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200721T163730Z:f627a4c5-41f4-4432-bb49-ce7aa9918fef"
- ],
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Tue, 21 Jul 2020 16:37:30 GMT"
- ],
- "Content-Length": [
- "156"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"InProgress\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:00.3Z\",\r\n \"resultInfo\": null,\r\n \"error\": null\r\n}",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719aca2ca600fe4c296a2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.27817.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
"x-ms-request-id": [
- "71168530-71d3-4f70-8958-a2309cb3c3f8"
+ "29b61efa-37c4-4e31-8370-cdad1bc121ed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-correlation-request-id": [
- "cc4138ef-7717-4c61-9587-7499dca84eb5"
+ "a8482118-b2b3-48d6-b7ee-bc67eef0a3a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163800Z:cc4138ef-7717-4c61-9587-7499dca84eb5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212247Z:a8482118-b2b3-48d6-b7ee-bc67eef0a3a0"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:00 GMT"
+ "Wed, 28 Jul 2021 21:22:46 GMT"
],
"Content-Length": [
- "272"
+ "455"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -441,20 +384,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:34.567Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"6101ca8846346111804bdc06\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"6101ca8846346111804bdc06\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-07-28T21:22:16.83Z\",\r\n \"updated\": \"2021-07-28T21:22:31.823Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit ae6def22e302a460fe6b1adf6483d989020849a2.\",\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/5f1719aca2ca600fe4c296a2?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5YWNhMmNhNjAwZmU0YzI5NmEyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101ca8846346111804bdc06?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjEwMWNhODg0NjM0NjExMTgwNGJkYzA2P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f50bec8-a303-438d-8026-ab54d5db9f45"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -467,29 +413,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5b187e51-73cb-49ba-a878-bfe955dfaa97"
+ "7a649fd2-339e-43ec-8fab-e6e47b2f5c92"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-correlation-request-id": [
- "69714d75-9892-4913-9a1d-49100f2e9066"
+ "9ff62655-650e-44e3-8a55-4378b82cfaaf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163801Z:69714d75-9892-4913-9a1d-49100f2e9066"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212247Z:9ff62655-650e-44e3-8a55-4378b82cfaaf"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:00 GMT"
+ "Wed, 28 Jul 2021 21:22:47 GMT"
],
"Content-Length": [
- "272"
+ "455"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -498,26 +444,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f1719aca2ca600fe4c296a2\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:37:00.3Z\",\r\n \"updated\": \"2020-07-21T16:37:34.567Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"6101ca8846346111804bdc06\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"6101ca8846346111804bdc06\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-07-28T21:22:16.83Z\",\r\n \"updated\": \"2021-07-28T21:22:31.823Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit ae6def22e302a460fe6b1adf6483d989020849a2.\",\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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/validate?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58f69980-62e0-4781-971d-6d58d748227c"
+ "dcaaf8ff-e47c-4e0b-a183-125d0018496a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -534,31 +480,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101caa746346111804bdc08?api-version=2020-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "71cdf15a-35c9-430c-a575-ad83c830f1b5"
+ "36eb276b-1b86-45a3-8bd8-d419771b3dbb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "0fd79ca0-1243-44a4-b815-7b7e750af262"
+ "4f689382-d8d6-4b05-8c13-f9afae6be0fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163801Z:0fd79ca0-1243-44a4-b815-7b7e750af262"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212247Z:4f689382-d8d6-4b05-8c13-f9afae6be0fa"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:00 GMT"
+ "Wed, 28 Jul 2021 21:22:47 GMT"
],
"Content-Length": [
"33"
@@ -570,20 +516,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"6101caa746346111804bdc08\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5ZTlhMmNhNjAwZmU0YzI5NmE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101caa746346111804bdc08?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjEwMWNhYTc0NjM0NjExMTgwNGJkYzA4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dcaaf8ff-e47c-4e0b-a183-125d0018496a"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -596,29 +545,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "23317c68-274f-43f0-ad07-be301f531d06"
+ "243e8616-39d8-4c50-b23d-6f4a8f567172"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11995"
],
"x-ms-correlation-request-id": [
- "9cbcab93-3608-4f4d-ba28-aacf71d1689b"
+ "f5bc5cbd-76e3-49a0-8146-4459d8eed2d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163831Z:9cbcab93-3608-4f4d-ba28-aacf71d1689b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212317Z:f5bc5cbd-76e3-49a0-8146-4459d8eed2d7"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:31 GMT"
+ "Wed, 28 Jul 2021 21:23:17 GMT"
],
"Content-Length": [
- "279"
+ "378"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -627,20 +576,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:01.323Z\",\r\n \"updated\": \"2020-07-21T16:38:09.533Z\",\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}",
+ "ResponseBody": "{\r\n \"id\": \"6101caa746346111804bdc08\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"6101caa746346111804bdc08\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-07-28T21:22:47.507Z\",\r\n \"updated\": \"2021-07-28T21:22:53.19Z\",\r\n \"resultInfo\": \"Validation is successfull\",\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/5f1719e9a2ca600fe4c296a4?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzE5ZTlhMmNhNjAwZmU0YzI5NmE0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101caa746346111804bdc08?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjEwMWNhYTc0NjM0NjExMTgwNGJkYzA4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dcaaf8ff-e47c-4e0b-a183-125d0018496a"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -653,29 +605,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "246a3594-e993-45a7-88ea-1fef08c9a631"
+ "75c7711e-0085-4217-af27-612deaf2ebe4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11994"
],
"x-ms-correlation-request-id": [
- "f0b4ac53-0979-4105-9187-cbb4cfac25f2"
+ "0cb86718-6c6e-4202-8c0d-4a2a90b1835a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163831Z:f0b4ac53-0979-4105-9187-cbb4cfac25f2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212317Z:0cb86718-6c6e-4202-8c0d-4a2a90b1835a"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:31 GMT"
+ "Wed, 28 Jul 2021 21:23:17 GMT"
],
"Content-Length": [
- "279"
+ "378"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -684,26 +636,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f1719e9a2ca600fe4c296a4\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:01.323Z\",\r\n \"updated\": \"2020-07-21T16:38:09.533Z\",\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}",
+ "ResponseBody": "{\r\n \"id\": \"6101caa746346111804bdc08\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"6101caa746346111804bdc08\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-07-28T21:22:47.507Z\",\r\n \"updated\": \"2021-07-28T21:22:53.19Z\",\r\n \"resultInfo\": \"Validation is successfull\",\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/deploy?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL2RlcGxveT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/deploy?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL2RlcGxveT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"branch\": \"master\",\r\n \"force\": false\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd1f0acb-fcaf-4757-a2da-1c803ef4296f"
+ "0f6a9917-455c-4033-a35b-4b1095a2044b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -720,31 +672,31 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101cac546346111804bdc0a?api-version=2020-12-01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "21b41989-ae78-45f3-bdc8-2932fefadf01"
+ "3a7f308a-ae1e-477a-bfd9-760c4ac5ac4f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "9554df38-ea0f-4c50-add0-8ee6978fc46b"
+ "8b6996cc-76b5-418b-9295-e1bd2a95e008"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163832Z:9554df38-ea0f-4c50-add0-8ee6978fc46b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212318Z:8b6996cc-76b5-418b-9295-e1bd2a95e008"
],
"Date": [
- "Tue, 21 Jul 2020 16:38:31 GMT"
+ "Wed, 28 Jul 2021 21:23:17 GMT"
],
"Content-Length": [
"33"
@@ -756,20 +708,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\"\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"6101cac546346111804bdc0a\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzFhMDdhMmNhNjAwZmU0YzI5NmE2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101cac546346111804bdc0a?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjEwMWNhYzU0NjM0NjExMTgwNGJkYzBhP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f6a9917-455c-4033-a35b-4b1095a2044b"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -782,29 +737,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "28f469d8-e923-4f15-b372-99aaf34e15bd"
+ "68b1aa7c-4f94-4327-a8aa-54abf1d60e5f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11993"
],
"x-ms-correlation-request-id": [
- "af6d6887-f4d5-4826-9370-f04564485153"
+ "0b839942-5be8-482d-a2a5-b43e7970cb6a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163902Z:af6d6887-f4d5-4826-9370-f04564485153"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212348Z:0b839942-5be8-482d-a2a5-b43e7970cb6a"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:01 GMT"
+ "Wed, 28 Jul 2021 21:23:48 GMT"
],
"Content-Length": [
- "461"
+ "561"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -813,20 +768,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:31.873Z\",\r\n \"updated\": \"2020-07-21T16:38:52.923Z\",\r\n \"resultInfo\": \"Latest commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795 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}",
+ "ResponseBody": "{\r\n \"id\": \"6101cac546346111804bdc0a\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"6101cac546346111804bdc0a\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-07-28T21:23:17.923Z\",\r\n \"updated\": \"2021-07-28T21:23:42.667Z\",\r\n \"resultInfo\": \"Latest commit ae6def22e302a460fe6b1adf6483d989020849a2 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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/5f171a07a2ca600fe4c296a6?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNWYxNzFhMDdhMmNhNjAwZmU0YzI5NmE2P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/tenant/configuration/operationResults/6101cac546346111804bdc0a?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3RlbmFudC9jb25maWd1cmF0aW9uL29wZXJhdGlvblJlc3VsdHMvNjEwMWNhYzU0NjM0NjExMTgwNGJkYzBhP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0f6a9917-455c-4033-a35b-4b1095a2044b"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -839,29 +797,29 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "5317475e-8446-4cbf-b725-8c05e8796fab"
+ "3a4fd372-4aab-468d-a10d-0f41a0361475"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11992"
],
"x-ms-correlation-request-id": [
- "d1f27ade-99e4-4353-8374-8f0442f9b4d7"
+ "9933ddcd-be87-4039-8e02-7e6706a736ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T163902Z:d1f27ade-99e4-4353-8374-8f0442f9b4d7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTCENTRALUS:20210728T212348Z:9933ddcd-be87-4039-8e02-7e6706a736ce"
],
"Date": [
- "Tue, 21 Jul 2020 16:39:01 GMT"
+ "Wed, 28 Jul 2021 21:23:48 GMT"
],
"Content-Length": [
- "461"
+ "561"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -870,7 +828,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"5f171a07a2ca600fe4c296a6\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2020-07-21T16:38:31.873Z\",\r\n \"updated\": \"2020-07-21T16:38:52.923Z\",\r\n \"resultInfo\": \"Latest commit 3191e287ef2b3f39bb2216dfe9fa443cf7198795 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}",
+ "ResponseBody": "{\r\n \"id\": \"6101cac546346111804bdc0a\",\r\n \"type\": \"Microsoft.ApiManagement/service/tenant/operationResults\",\r\n \"name\": \"6101cac546346111804bdc0a\",\r\n \"properties\": {\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2021-07-28T21:23:17.923Z\",\r\n \"updated\": \"2021-07-28T21:23:42.667Z\",\r\n \"resultInfo\": \"Latest commit ae6def22e302a460fe6b1adf6483d989020849a2 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}",
"StatusCode": 200
}
],
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 8b8d0015cb0c..c09e4ecd0058 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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44755b87-7c48-41dc-abb7-114a3f9fcd1f"
+ "3d301947-a8a0-40bb-928a-1e5a44a3ebbe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -29,8 +29,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "892a338d-14af-49fd-868b-a5f0015d85e1"
+ "1f4e54ae-b53e-4542-8d6f-a707b4575647"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -39,16 +42,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "5afa3071-9afc-480f-807b-f4ce0f7d98b7"
+ "7e9019f3-7cbb-418f-aa61-1eb53f54f379"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164108Z:5afa3071-9afc-480f-807b-f4ce0f7d98b7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001303Z:7e9019f3-7cbb-418f-aa61-1eb53f54f379"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:08 GMT"
+ "Tue, 13 Jul 2021 00:13:02 GMT"
],
"Content-Length": [
"664"
@@ -64,22 +64,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/1?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzLzE/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41d99227-bac5-4eb0-a474-89d9cf455134"
+ "a03b655d-be53-4386-9a8c-c00108fd3bc2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -90,13 +90,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPNsAAAAAAAAIdA==\""
+ "\"AAAAAAAA//8AAAAAAAAIdA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "d8e0212a-55b8-4a03-baff-13a6c6abef36"
+ "9745b657-723a-49a8-be13-f5cd06f5eb3b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -105,16 +108,13 @@
"11998"
],
"x-ms-correlation-request-id": [
- "7ef710f9-8de5-4fac-90e8-61696e8885be"
+ "a2b17ebb-6619-4f73-8bd1-d9719d23f69e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164109Z:7ef710f9-8de5-4fac-90e8-61696e8885be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001303Z:a2b17ebb-6619-4f73-8bd1-d9719d23f69e"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:08 GMT"
+ "Tue, 13 Jul 2021 00:13:03 GMT"
],
"Content-Length": [
"548"
@@ -130,28 +130,28 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps6330\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"password\": \"ps348\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e12639a-b3cd-4562-af85-cff07179389c"
+ "6b81693e-d462-4aae-a62e-f7d873789b9c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "193"
+ "195"
]
},
"ResponseHeaders": {
@@ -162,13 +162,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPP8AAAAAAAA9Ag==\""
+ "\"AAAAAAABADAAAAAAAAEAMg==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "643ebadb-1f41-4c67-8059-e983d1fbbe43"
+ "d45b2458-8f1f-49a3-a954-ad2eadbbddb7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -177,19 +180,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "b72d24ad-d3c0-44c7-8a20-dde0160f9347"
+ "4f0dad0e-2af7-4b82-a27d-73d092255227"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164110Z:b72d24ad-d3c0-44c7-8a20-dde0160f9347"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001305Z:4f0dad0e-2af7-4b82-a27d-73d092255227"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:09 GMT"
+ "Tue, 13 Jul 2021 00:13:04 GMT"
],
"Content-Length": [
- "1052"
+ "1054"
],
"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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps6330\",\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/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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad8681ac-1f1a-44fe-b165-2d8a9f2acb93"
+ "6b81693e-d462-4aae-a62e-f7d873789b9c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -228,13 +228,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPP8AAAAAAAA9Ag==\""
+ "\"AAAAAAABADAAAAAAAAEAMg==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "6a3bdda9-9d21-4416-a93f-24246d26b8b2"
+ "c23ca108-8e32-4161-9376-8c93d1231f0d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -243,19 +246,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "f9c6b71e-4c93-40bd-b06d-332a1c9bcecc"
+ "acbfaf29-0b42-49c8-8f5e-1ee0a2cd55f7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164110Z:f9c6b71e-4c93-40bd-b06d-332a1c9bcecc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001305Z:acbfaf29-0b42-49c8-8f5e-1ee0a2cd55f7"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:09 GMT"
+ "Tue, 13 Jul 2021 00:13:04 GMT"
],
"Content-Length": [
- "578"
+ "580"
],
"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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps4068\",\r\n \"lastName\": \"ps830\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps6330\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5dc9587d-b772-4990-b1ce-7dd290349678"
+ "4ad5fc32-f89c-4936-98b6-e9434cf05654"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -294,13 +294,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPQYAAAAAAAA9Bw==\""
+ "\"AAAAAAABADkAAAAAAAEAOg==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "74669af4-20e6-415a-b7c0-fc94d51e8bf2"
+ "85111135-3d01-4ae7-90c1-a2a45bda9272"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -309,19 +312,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "1db45beb-e2d4-4634-b1e5-d7d6d19d3612"
+ "044ad5ae-c23a-4e3d-afd5-88d4355fa697"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164112Z:1db45beb-e2d4-4634-b1e5-d7d6d19d3612"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001307Z:044ad5ae-c23a-4e3d-afd5-88d4355fa697"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:12 GMT"
+ "Tue, 13 Jul 2021 00:13:06 GMT"
],
"Content-Length": [
- "586"
+ "588"
],
"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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d070ea55-efe1-4d8f-b3fb-6bd3629262f7"
+ "4212090e-1c7a-4973-8c78-e9aff77bcc48"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -360,13 +360,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPQoAAAAAAAA9Cw==\""
+ "\"AAAAAAABAD4AAAAAAAEAPw==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8e7a8e93-250a-422e-858a-1cf4a266229b"
+ "91abb12e-f6b5-4590-b445-4a35e7c63a32"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -375,19 +378,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "8b8c23ae-adfd-4bee-800b-81f265d1091e"
+ "73c44c2f-1ad5-4c62-b545-ce1a193039b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164114Z:8b8c23ae-adfd-4bee-800b-81f265d1091e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001308Z:73c44c2f-1ad5-4c62-b545-ce1a193039b6"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:13 GMT"
+ "Tue, 13 Jul 2021 00:13:07 GMT"
],
"Content-Length": [
- "587"
+ "589"
],
"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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f0a0573-795b-4b2f-82e5-2132b2d5e5e9"
+ "7a727d44-9ce9-4668-b561-7593ce56305f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -426,13 +426,16 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAAPQ4AAAAAAAA9Dw==\""
+ "\"AAAAAAABAEMAAAAAAAEARA==\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "454def41-c219-4733-8155-1b9c3649168b"
+ "10df76ce-8600-419c-be02-b55f928acbca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,19 +444,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "06721aa9-94e6-4bad-891e-e0faccb293ab"
+ "936f1e7a-d18f-4ca2-b894-db9f6dad15ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164115Z:06721aa9-94e6-4bad-891e-e0faccb293ab"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001309Z:936f1e7a-d18f-4ca2-b894-db9f6dad15ec"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:14 GMT"
+ "Tue, 13 Jul 2021 00:13:08 GMT"
],
"Content-Length": [
- "586"
+ "588"
],
"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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3854a63d-e719-4580-8c21-4855644b795f"
+ "f2f5ad92-0d86-48d7-b268-64fded65915d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -494,8 +494,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "bf3e8fe1-5cdf-49cf-87b7-6a9e88f77aed"
+ "735c4d06-5388-4a2c-9db7-3e057bfe2fe8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -504,16 +507,13 @@
"11988"
],
"x-ms-correlation-request-id": [
- "211f5f5e-f862-43b8-a3c0-eb036db845d2"
+ "e0a40e3f-c96c-4c72-83ba-f342f3ecf7cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164116Z:211f5f5e-f862-43b8-a3c0-eb036db845d2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001310Z:e0a40e3f-c96c-4c72-83ba-f342f3ecf7cf"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:16 GMT"
+ "Tue, 13 Jul 2021 00:13:10 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/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"note\": \"ps4780\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"password\": \"ps9973\",\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\"\r\n }\r\n}",
+ "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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e70a1f4-275d-44dd-b68e-c9b99fef3976"
+ "4ad5fc32-f89c-4936-98b6-e9434cf05654"
],
"If-Match": [
"*"
@@ -544,16 +544,16 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "202"
+ "203"
]
},
"ResponseHeaders": {
@@ -563,11 +563,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABADk=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "fc0f2209-414c-46b9-93d6-1059bcc23ceb"
+ "3a344b31-2e2e-4921-84b5-72664d92bc36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -576,32 +582,35 @@
"1198"
],
"x-ms-correlation-request-id": [
- "77215f6b-aa91-42f0-bcc3-cb5797ceaf51"
+ "86fd3d1f-a93b-49f3-8345-00eebef86b1f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164112Z:77215f6b-aa91-42f0-bcc3-cb5797ceaf51"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001307Z:86fd3d1f-a93b-49f3-8345-00eebef86b1f"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:11 GMT"
+ "Tue, 13 Jul 2021 00:13:06 GMT"
+ ],
+ "Content-Length": [
+ "607"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Blocked\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9043ad56-a036-4283-94b8-7990b247f0c9"
+ "4212090e-1c7a-4973-8c78-e9aff77bcc48"
],
"If-Match": [
"*"
@@ -610,10 +619,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -629,11 +638,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAD4=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "43855a33-f69e-4595-8bd1-63ea77a0198d"
+ "bbf094d3-7d0c-4850-b133-3a06caf1308c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -642,32 +657,35 @@
"1197"
],
"x-ms-correlation-request-id": [
- "055bfaf7-5929-4509-a4f7-f4677b420505"
+ "bfeaf44f-1e1f-4ebb-ae1a-961438626e95"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164114Z:055bfaf7-5929-4509-a4f7-f4677b420505"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001308Z:bfeaf44f-1e1f-4ebb-ae1a-961438626e95"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:13 GMT"
+ "Tue, 13 Jul 2021 00:13:07 GMT"
+ ],
+ "Content-Length": [
+ "608"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Active\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c23123d8-5f0b-40e5-b4df-671cab5e0c9d"
+ "7a727d44-9ce9-4668-b561-7593ce56305f"
],
"If-Match": [
"*"
@@ -676,10 +694,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -695,11 +713,17 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"AAAAAAABAEM=\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "a89a48df-bf88-4b27-af28-554030fe94b9"
+ "3dac3e77-c73a-4e31-932f-6587dcb69c83"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -708,41 +732,44 @@
"1196"
],
"x-ms-correlation-request-id": [
- "e9af8e7b-0717-4372-9252-d90b36633da7"
+ "9d2fd1c8-6035-4d14-a4a9-fe7417b010b2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164115Z:e9af8e7b-0717-4372-9252-d90b36633da7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001308Z:9d2fd1c8-6035-4d14-a4a9-fe7417b010b2"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:14 GMT"
+ "Tue, 13 Jul 2021 00:13:08 GMT"
+ ],
+ "Content-Length": [
+ "607"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "",
- "StatusCode": 204
+ "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}",
+ "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=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9ZW1haWwlMjBlcSUyMCdjaGFuZ2VkLmNvbnRvc29AbWljcm9zb2Z0LmNvbScmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0261b3ba-5a53-44ee-a713-55b8f5734717"
+ "c4d9e91f-a492-4fa5-a90c-32fcf29da7ac"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -755,8 +782,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "eeb8b5fc-2247-4d8c-90fc-3bab021763e0"
+ "260ba041-200d-414a-8201-6a02cdb195ec"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -765,19 +795,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "db525397-5bcb-43d7-b01e-f4fb46cc358f"
+ "95df991f-0a2d-4f2c-a9db-f18d89cbce01"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164113Z:db525397-5bcb-43d7-b01e-f4fb46cc358f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001307Z:95df991f-0a2d-4f2c-a9db-f18d89cbce01"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:12 GMT"
+ "Tue, 13 Jul 2021 00:13:06 GMT"
],
"Content-Length": [
- "702"
+ "704"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -786,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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=firstName%20eq%20'ps8008'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9Zmlyc3ROYW1lJTIwZXElMjAncHM4MDA4JyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a8d7b8f-7dc6-44d3-b952-bea19b97ba55"
+ "a41964c2-9a18-41eb-8483-c50d922b9460"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -818,8 +845,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "f1ce5cb7-155d-4420-b389-f5fa7a777cf8"
+ "5d399993-7391-4445-b102-d761a45223cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -828,19 +858,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "1debc8c9-4ab6-41fd-8f77-ea88d8363940"
+ "6ed1654b-6e9a-4608-919c-c61439cda629"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164113Z:1debc8c9-4ab6-41fd-8f77-ea88d8363940"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001307Z:6ed1654b-6e9a-4608-919c-c61439cda629"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:12 GMT"
+ "Tue, 13 Jul 2021 00:13:07 GMT"
],
"Content-Length": [
- "702"
+ "704"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -849,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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps548'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczU0OCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb31522d-6c04-4441-a810-76287a0fb040"
+ "65f095c6-663e-453c-b642-01d89a597587"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -881,8 +908,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "0854d05e-4cfb-46af-85e8-b460ad515489"
+ "e1c25300-8d4e-4320-911f-6c2a21ad9784"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -891,19 +921,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "dc389fdc-f162-47f0-a035-481f507fd307"
+ "9f98632f-232b-4dfe-9c47-f8c39a8889ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164113Z:dc389fdc-f162-47f0-a035-481f507fd307"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001307Z:9f98632f-232b-4dfe-9c47-f8c39a8889ae"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:13 GMT"
+ "Tue, 13 Jul 2021 00:13:07 GMT"
],
"Content-Length": [
- "702"
+ "704"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -912,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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=lastName%20eq%20'ps548'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9bGFzdE5hbWUlMjBlcSUyMCdwczU0OCcmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10be4cf8-8715-462b-be5c-728b287aca64"
+ "ecd128d6-f057-4185-8853-518f434a6497"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -944,8 +971,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8c270360-36d3-4a55-9ecf-e295e4eba4cb"
+ "c284cc0c-cb38-4fbb-87a1-89191c7e0dab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -954,19 +984,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "c7f188c4-d919-4abe-9785-c79728664c6c"
+ "ca9f74d3-c656-4d5e-b90e-3d1fbebc240b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164114Z:c7f188c4-d919-4abe-9785-c79728664c6c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001307Z:ca9f74d3-c656-4d5e-b90e-3d1fbebc240b"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:13 GMT"
+ "Tue, 13 Jul 2021 00:13:07 GMT"
],
"Content-Length": [
- "702"
+ "704"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -975,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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users?$filter=state%20eq%20'blocked'&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzPyRmaWx0ZXI9c3RhdGUlMjBlcSUyMCdibG9ja2VkJyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3c2b997-1d53-4cbe-9564-8892efc545d7"
+ "6052e95a-2d9b-4505-95c9-44aa0ad51a46"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1007,8 +1034,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "ec5662e8-6cd7-4fad-a9be-b16838396950"
+ "4fc030be-3670-4aaa-ae77-c65c4fca372d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1017,19 +1047,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "c600ac41-28c7-4e94-baef-01d536446e17"
+ "e799e5f9-2b3b-4138-862b-4e41a430797b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164114Z:c600ac41-28c7-4e94-baef-01d536446e17"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001308Z:e799e5f9-2b3b-4138-862b-4e41a430797b"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:13 GMT"
+ "Tue, 13 Jul 2021 00:13:08 GMT"
],
"Content-Length": [
- "703"
+ "705"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1038,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/ps7985\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"ps7985\",\r\n \"properties\": {\r\n \"firstName\": \"ps8008\",\r\n \"lastName\": \"ps548\",\r\n \"email\": \"changed.contoso@microsoft.com\",\r\n \"state\": \"blocked\",\r\n \"registrationDate\": \"2020-07-21T16:41:10.08Z\",\r\n \"note\": \"ps4780\",\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/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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985/generateSsoUrl?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935/generateSsoUrl?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNS9nZW5lcmF0ZVNzb1VybD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f114c2e-567c-4c96-af6e-6892cc0efbbd"
+ "25161051-dbc9-4d19-ade1-88e7979a4dbf"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1070,8 +1097,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8ec13eee-df8c-48e6-ab95-d57df3d6b259"
+ "c4bf6654-19f5-449d-9702-c534fe1f4307"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1080,16 +1110,13 @@
"1199"
],
"x-ms-correlation-request-id": [
- "19728d95-4dc6-4283-983a-2f0ca740f51d"
+ "6c8a2911-0846-46bc-9a59-e41247c72a31"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164115Z:19728d95-4dc6-4283-983a-2f0ca740f51d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001309Z:6c8a2911-0846-46bc-9a59-e41247c72a31"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:14 GMT"
+ "Tue, 13 Jul 2021 00:13:08 GMT"
],
"Content-Length": [
"201"
@@ -1101,26 +1128,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps7985%26202007211646%26LUck21EfZc7lpL%2bTxmRx7c%2bpptTTvlAHwuDX%2fiSOvUtxgWvMCeI2KzvJ8GGU1TvoZAGN3AgA15FIRcwcWN9exw%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"https://powershellsdkservice.portal.azure-api.net/signin-sso?token=ps3935%26202107130018%26zcSUv97b%2bcevQDWDNgS8Q3KrugjcpYEX5m2WraVnpWsFAWchWLjSb%2bIqEuZ2ef9YbZqth1R%2baFInFeAZYrsEWg%3d%3d\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985/token?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NS90b2tlbj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps3935/token?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzMzkzNS90b2tlbj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2020-07-22T00:41:15.4424519Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2021-07-13T08:13:09.5127289Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e475690-e941-4f0c-a6d5-fdb3a173c82b"
+ "515492dd-cfae-40dc-b8e8-47b6ffd2a904"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1139,8 +1166,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "8d4eebcf-d517-4e8c-a286-ee14ffffb1ec"
+ "a7395d12-2c61-404c-bce4-e1f898caba05"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1149,16 +1179,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "26b26fb1-86d7-4214-a497-409d5fd9c485"
+ "cbbc9da8-9a98-43cf-8fa8-ac874bbb001f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164115Z:26b26fb1-86d7-4214-a497-409d5fd9c485"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001309Z:cbbc9da8-9a98-43cf-8fa8-ac874bbb001f"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:14 GMT"
+ "Tue, 13 Jul 2021 00:13:08 GMT"
],
"Content-Length": [
"120"
@@ -1170,17 +1197,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": \"ps7985&202007220041&SQOddY2KrXfhicU4yk3JZlhPmSFSU8wtfJ4YV49i+lSHS4Jl0EYR1AotVcFN87XwbTRp4cCtHy9++3IyV+XCRA==\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"ps3935&202107130813&jiix0a8o76n/DoFYjOrWnmw7w/31TVmEQjFidVErgTZ2Z0zgxtxhpi/QxT1+DTDPo9SbbZzNiQy46SDsGxPzmQ==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ApiManagement/service/powershellsdkservice/users/ps7985?deleteSubscriptions=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3Bvd2Vyc2hlbGx0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlL3Bvd2Vyc2hlbGxzZGtzZXJ2aWNlL3VzZXJzL3BzNzk4NT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "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==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d1022ca7-5184-43f1-9980-18aca3ee4e9a"
+ "cff32cc0-796d-42ab-9c07-a7a11e769552"
],
"If-Match": [
"*"
@@ -1189,10 +1216,10 @@
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/6.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1205,8 +1232,11 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
"x-ms-request-id": [
- "64c9a8f8-5d65-4182-b891-d00ee746b8c4"
+ "57feac0c-243b-4fbd-83e6-1a4336daf8b4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1215,16 +1245,13 @@
"14999"
],
"x-ms-correlation-request-id": [
- "57bed207-6575-4aa3-bb5e-2fa334d0c26d"
+ "7f9a1961-83f0-4370-bb0c-0913eb6147e4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200721T164116Z:57bed207-6575-4aa3-bb5e-2fa334d0c26d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
+ "WESTUS:20210713T001310Z:7f9a1961-83f0-4370-bb0c-0913eb6147e4"
],
"Date": [
- "Tue, 21 Jul 2020 16:41:15 GMT"
+ "Tue, 13 Jul 2021 00:13:10 GMT"
],
"Expires": [
"-1"
@@ -1239,15 +1266,15 @@
],
"Names": {
"": [
- "ps7985",
- "ps4068",
- "ps830",
- "ps348",
- "ps6330",
- "ps8008",
- "ps548",
- "ps9973",
- "ps4780"
+ "ps3935",
+ "ps1767",
+ "ps9322",
+ "ps3004",
+ "ps1314",
+ "ps2011",
+ "ps3881",
+ "ps3863",
+ "ps5771"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
index f44f39144325..3d6a29545e14 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagement.ServiceManagement.csproj
@@ -13,7 +13,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
index 605ba1a737ba..4d7dfa7efe5b 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/ApiManagementClient.cs
@@ -55,7 +55,7 @@ public static IMapper Mapper
{
get
{
- lock(_lock)
+ lock (_lock)
{
if (_mapper == null)
{
@@ -108,10 +108,10 @@ private static void ConfigureMappings()
dest.FormParameters = src.FormParameters == null || !src.FormParameters.Any()
? null
: ToParameterContract(src.FormParameters));
-
+
cfg
.CreateMap()
- .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
+ .ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
.ForMember(dest => dest.ApiId, opt => opt.MapFrom(src => src.Name))
.ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.DisplayName))
.ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description))
@@ -157,7 +157,7 @@ private static void ConfigureMappings()
.ForMember(
dest => dest.BearerTokenSendingMethod,
opt => opt.MapFrom(
- src => src.AuthenticationSettings != null && src.AuthenticationSettings.Openid != null && src.AuthenticationSettings.Openid.BearerTokenSendingMethods != null &&
+ src => src.AuthenticationSettings != null && src.AuthenticationSettings.Openid != null && src.AuthenticationSettings.Openid.BearerTokenSendingMethods != null &&
src.AuthenticationSettings.Openid.BearerTokenSendingMethods.Any()
? src.AuthenticationSettings.Openid.BearerTokenSendingMethods.ToArray()
: null));
@@ -300,7 +300,7 @@ private static void ConfigureMappings()
.CreateMap()
.ForMember(dest => dest.Value, opt => opt.MapFrom(src => src.SchemaDocument))
.ForMember(dest => dest.ContentType, opt => opt.MapFrom(src => Utils.GetApiSchemaContentTypeFromPsSchemaContentType(src.SchemaDocumentContentType)));
-
+
cfg
.CreateMap()
.ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
@@ -353,10 +353,19 @@ private static void ConfigureMappings()
.CreateMap()
.ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
.ForMember(dest => dest.Subject, opt => opt.MapFrom(src => src.Subject))
- .ForMember(dest => dest.Thumbprint, opt => opt.MapFrom(src => src.Thumbprint))
+ .ForMember(dest => dest.Thumbprint, opt => opt.MapFrom(src => src.Thumbprint))
.ForMember(dest => dest.ExpirationDate, opt => opt.MapFrom(src => src.ExpirationDate))
- .ForMember(dest => dest.CertificateId, opt => opt.MapFrom(src => src.Name));
+ .ForMember(dest => dest.CertificateId, opt => opt.MapFrom(src => src.Name))
+ .ForMember(dest => dest.KeyVault, opt => opt.MapFrom(src => src.KeyVault)
+ );
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.IdentityClientId, opt => opt.MapFrom(src => src.IdentityClientId))
+ .ForMember(dest => dest.SecretIdentifier, opt => opt.MapFrom(src => src.SecretIdentifier))
+ .ForMember(dest => dest.LastStatus, opt => opt.MapFrom(src => src.LastStatus)
+ );
+
cfg
.CreateMap()
.ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
@@ -390,10 +399,11 @@ private static void ConfigureMappings()
.ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.DisplayName))
.ForMember(dest => dest.Value, opt => opt.MapFrom(src => src.Value))
.ForMember(dest => dest.Secret, opt => opt.MapFrom(src => src.Secret))
- .ForMember(dest => dest.Tags, opt => opt.MapFrom(src => src.Tags == null ? new string[0] : src.Tags.ToArray()));
+ .ForMember(dest => dest.Tags, opt => opt.MapFrom(src => src.Tags == null ? new string[0] : src.Tags.ToArray()))
+ .ForMember(dest => dest.KeyVault, opt => opt.MapFrom(src => src.KeyVault));
cfg
- .CreateMap()
+ .CreateMap()
.ForMember(dest => dest.Value, opt => opt.MapFrom(src => src.Value));
cfg
@@ -403,12 +413,19 @@ private static void ConfigureMappings()
.ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.DisplayName))
.ForMember(dest => dest.Description, opt => opt.MapFrom(src => src.Description))
.ForMember(dest => dest.ClientId, opt => opt.MapFrom(src => src.ClientId))
- .ForMember(dest => dest.ClientSecret, opt => opt.MapFrom(src => src.ClientSecret))
+ .ForMember(dest => dest.ClientSecret, opt => opt.MapFrom(src => src.ClientSecret))
.ForMember(dest => dest.MetadataEndpoint, opt => opt.MapFrom(src => src.MetadataEndpoint));
cfg
.CreateMap()
.ForMember(dest => dest.Enabled, opt => opt.MapFrom(src => src.Enabled))
+ .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));
+
+ cfg
+ .CreateMap()
+ .ForMember(dest => dest.Enabled, opt => opt.MapFrom(src => src.Enabled))
.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));
@@ -425,7 +442,7 @@ private static void ConfigureMappings()
.ForMember(dest => dest.SignupPolicyName, opt => opt.MapFrom(src => src.SignupPolicyName))
.ForMember(dest => dest.ProfileEditingPolicyName, opt => opt.MapFrom(src => src.ProfileEditingPolicyName))
.ForMember(dest => dest.PasswordResetPolicyName, opt => opt.MapFrom(src => src.PasswordResetPolicyName))
- .ForMember(dest => dest.Authority, opt => opt.MapFrom(src => src.Authority))
+ .ForMember(dest => dest.Authority, opt => opt.MapFrom(src => src.Authority))
.ForMember(dest => dest.SigninTenant, opt => opt.MapFrom(src => src.SigninTenant))
.ForMember(dest => dest.AllowedTenants, opt => opt.MapFrom(src => src.AllowedTenants == null ? new string[0] : src.AllowedTenants.ToArray()));
@@ -477,7 +494,7 @@ private static void ConfigureMappings()
.ForMember(dest => dest.ManagementEndpoints, opt => opt.MapFrom(src => src.ManagementEndpoints))
.ForMember(dest => dest.ServerX509Names, opt => opt.Ignore())
.ForMember(dest => dest.ServerCertificateThumbprint, opt => opt.MapFrom(src => src.ServerCertificateThumbprints))
- .AfterMap((src, dest) =>
+ .AfterMap((src, dest) =>
dest.ServerX509Names = src.ServerX509Names == null ? (Hashtable)null : Utils.X509CertificateToHashTable(src.ServerX509Names));
cfg
@@ -501,7 +518,7 @@ private static void ConfigureMappings()
.ForMember(dest => dest.Properties, opt => opt.Ignore())
.ForMember(dest => dest.Credentials, opt => opt.MapFrom(src => src.Credentials))
.ForMember(dest => dest.ServiceFabricCluster, opt => opt.MapFrom(src => src.Properties.ServiceFabricCluster))
- .AfterMap((src, dest) =>
+ .AfterMap((src, dest) =>
dest.Properties = Utils.ToBackendProperties(src.Tls));
cfg
@@ -569,12 +586,14 @@ private static void ConfigureMappings()
.CreateMap()
.ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.Id))
.ForMember(dest => dest.AzureRedisResourceId, opt => opt.MapFrom(src => src.ResourceId))
- .ForMember(dest => dest.CacheId, opt => opt.MapFrom(src => src.Name));
+ .ForMember(dest => dest.CacheId, opt => opt.MapFrom(src => src.Name))
+ .ForMember(dest => dest.UseFromLocation, opt => opt.MapFrom(src => src.UseFromLocation));
cfg
.CreateMap()
.ForMember(dest => dest.ResourceId, opt => opt.MapFrom(src => src.AzureRedisResourceId))
- .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.CacheId));
+ .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.CacheId))
+ .ForMember(dest => dest.UseFromLocation, opt => opt.MapFrom(src => src.UseFromLocation));
cfg
.CreateMap()
@@ -790,7 +809,7 @@ public PsApiManagementApi ApiCreate(
OpenidProviderId = openIdProviderId,
BearerTokenSendingMethods = bearerTokenSendingMethods
}
- };
+ };
}
if (!string.IsNullOrWhiteSpace(subscriptionKeyHeaderName) || !string.IsNullOrWhiteSpace(subscriptionKeyQueryParamName))
@@ -943,11 +962,11 @@ public PsApiManagementApi ApiSet(
Query = subscriptionKeyQueryParamName
};
}
-
+
var updatedApiContract = Client.Api.CreateOrUpdate(
- resourceGroupName,
+ resourceGroupName,
servicename,
- id,
+ id,
api,
"*");
@@ -1021,7 +1040,7 @@ public void ApiImportFromFile(
context.ResourceGroupName,
context.ServiceName,
apiId,
- apiCreateOrUpdateParams);
+ apiCreateOrUpdateParams);
}
public void ApiImportFromUrl(
@@ -1041,7 +1060,7 @@ public void ApiImportFromUrl(
string contentFormat = GetContentFormatForApiImport(false, specificationFormat, wsdlServiceName, wsdlEndpointName, true);
string soapApiType = GetApiTypeForImport(specificationFormat, apiType);
-
+
var createOrUpdateContract = new ApiCreateOrUpdateParameter()
{
Format = contentFormat,
@@ -1116,7 +1135,7 @@ byte[] DownloadFileFromLink(string url)
private string GetContentFormatForApiImport(
bool fromFile,
- PsApiManagementApiFormat specificationApiFormat,
+ PsApiManagementApiFormat specificationApiFormat,
string wsdlServiceName,
string wsdlEndpointName,
bool validateWsdlParams)
@@ -1128,7 +1147,7 @@ private string GetContentFormatForApiImport(
headerValue = fromFile ? ContentFormat.WadlXml : ContentFormat.WadlLinkJson;
break;
case PsApiManagementApiFormat.Swagger:
- headerValue = fromFile ? ContentFormat.SwaggerJson : ContentFormat.SwaggerLinkJson;
+ headerValue = fromFile ? ContentFormat.SwaggerJson : ContentFormat.SwaggerLinkJson;
break;
case PsApiManagementApiFormat.OpenApi:
headerValue = fromFile ? ContentFormat.Openapi : ContentFormat.OpenapiLink;
@@ -1137,7 +1156,7 @@ private string GetContentFormatForApiImport(
headerValue = fromFile ? ContentFormat.Openapijson : ContentFormat.OpenapijsonLink;
break;
case PsApiManagementApiFormat.Wsdl:
- headerValue = fromFile ? ContentFormat.Wsdl : ContentFormat.WsdlLink;
+ headerValue = fromFile ? ContentFormat.Wsdl : ContentFormat.WsdlLink;
if (validateWsdlParams && string.IsNullOrEmpty(wsdlServiceName))
{
throw new ArgumentException(string.Format(CultureInfo.InvariantCulture, "WsdlServiceName cannot be Empty for Format : {0}", specificationApiFormat));
@@ -1158,7 +1177,7 @@ private string GetContentFormatForApiImport(
private string GetFormatForApiExport(
PsApiManagementApiFormat specificationFormat)
{
- switch(specificationFormat)
+ switch (specificationFormat)
{
case PsApiManagementApiFormat.Swagger:
return ExportFormat.Swagger;
@@ -1186,7 +1205,7 @@ private string GetApiTypeForImport(
if (apiType.HasValue)
{
- switch(apiType.Value)
+ switch (apiType.Value)
{
case PsApiManagementApiType.Http: return SoapApiType.SoapToRest;
case PsApiManagementApiType.Soap: return SoapApiType.SoapPassThrough;
@@ -1222,7 +1241,7 @@ public PsApiManagementApi GetApiRevision(PsApiManagementContext context, string
{
return this.ApiById(context.ResourceGroupName, context.ServiceName, apiId.ApiRevisionIdentifier(revisionId));
}
-
+
public PsApiManagementApi ApiCreateRevision(
PsApiManagementContext context,
string apiId,
@@ -1263,13 +1282,13 @@ public PsApiManagementApi ApiCreateRevision(
return Mapper.Map(getResponse);
}
-
+
#endregion
#region API Releases
public PsApiManagementApiRelease CreateApiRelease(
PsApiManagementContext context,
- string apiId,
+ string apiId,
string revisionId,
string releaseId,
string notes)
@@ -1377,7 +1396,7 @@ public PsApiManagementApiSchema ApiSchemaCreate(
resourceGroupName,
serviceName,
apiId,
- schemaId,
+ schemaId,
apiSchemaCreateContract);
return Mapper.Map(getResponse);
@@ -1437,7 +1456,7 @@ public void ApiSchemaRemove(string resourceGroupName, string serviceName, string
Client.ApiSchema.Delete(resourceGroupName, serviceName, apiId, schemaId, "*");
}
-
+
#endregion
#region API Version Sets
@@ -1490,7 +1509,7 @@ public PsApiManagementApiVersionSet SetApiVersionSet(
apiVersionContract = Client.ApiVersionSet.Get(
resourceGroupName,
serviceName,
- versionSetId);
+ versionSetId);
}
else
{
@@ -1536,9 +1555,9 @@ public PsApiManagementApiVersionSet SetApiVersionSet(
var updatedApiVersionSet = Client.ApiVersionSet.CreateOrUpdate(
resourceGroupName,
- serviceName,
+ serviceName,
versionSetId,
- apiVersionContract,
+ apiVersionContract,
"*");
return Mapper.Map(updatedApiVersionSet);
@@ -1681,7 +1700,7 @@ public void OperationSet(
{
operationContract.Responses = Mapper.Map>(responses);
}
-
+
Client.ApiOperation.Update(
context.ResourceGroupName,
context.ServiceName,
@@ -1698,7 +1717,7 @@ public void OperationRemove(PsApiManagementContext context, string apiId, string
#endregion
#region Products
- public IList ProductList (PsApiManagementContext context, string title)
+ public IList ProductList(PsApiManagementContext context, string title)
{
var query = new Rest.Azure.OData.ODataQuery();
if (!string.IsNullOrWhiteSpace(title))
@@ -1848,7 +1867,7 @@ public IList SubscriptionByUser(PsApiManagementCont
public IList SubscriptionByScope(PsApiManagementContext context, string scope)
{
var query = new Rest.Azure.OData.ODataQuery();
- query.Filter = string.Format("properties/scope eq '{0}'", scope);
+ query.Filter = string.Format("properties/scope eq '{0}'", scope);
var results = ListPagedAndMap(
() => Client.Subscription.List(context.ResourceGroupName, context.ServiceName, query),
@@ -1885,7 +1904,7 @@ public PsApiManagementSubscription SubscriptionById(
{
var response = Client.Subscription.Get(
resourceGroupName,
- serviceName,
+ serviceName,
subscriptionId);
var subscription = Mapper.Map(response);
@@ -1961,9 +1980,9 @@ public PsApiManagementSubscription SubscriptionCreate(
var response = Client.Subscription.CreateOrUpdate(
context.ResourceGroupName,
context.ServiceName,
- subscriptionId,
+ subscriptionId,
createParameters);
-
+
return Mapper.Map(response);
}
@@ -2225,7 +2244,7 @@ private static Rest.Azure.OData.ODataQuery CreateQueryUserParamete
public PsApiManagementGroup GroupCreate(
PsApiManagementContext context,
string groupId,
- string name,
+ string name,
string description,
PsApiManagementGroupType? type,
string externalId)
@@ -2442,14 +2461,30 @@ public PsApiManagementCertificate CertificateById(string resourceGroupName, stri
public PsApiManagementCertificate CertificateCreate(
PsApiManagementContext context,
string certificateId,
- byte[] certificateBytes,
- string pfxPassword)
+ byte[] certificateBytes = null,
+ string pfxPassword = null,
+ PsApiManagementKeyVaultEntity keyvault = null)
{
- var createParameters = new CertificateCreateOrUpdateParameters
+ CertificateCreateOrUpdateParameters createParameters;
+ if (keyvault == null)
{
- Data = Convert.ToBase64String(certificateBytes),
- Password = pfxPassword
- };
+ createParameters = new CertificateCreateOrUpdateParameters
+ {
+ Data = Convert.ToBase64String(certificateBytes),
+ Password = pfxPassword
+ };
+ }
+ else
+ {
+ createParameters = new CertificateCreateOrUpdateParameters
+ {
+ KeyVault = new KeyVaultContractCreateProperties
+ {
+ IdentityClientId = keyvault?.IdentityClientId,
+ SecretIdentifier = keyvault?.SecretIdentifier
+ }
+ };
+ }
Client.Certificate.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, certificateId, createParameters, null);
@@ -2462,14 +2497,30 @@ public PsApiManagementCertificate CertificateCreate(
public PsApiManagementCertificate CertificateSet(
PsApiManagementContext context,
string certificateId,
- byte[] certificateBytes,
- string pfxPassword)
+ byte[] certificateBytes = null,
+ string pfxPassword = null,
+ PsApiManagementKeyVaultEntity keyvault = null)
{
- var createParameters = new CertificateCreateOrUpdateParameters
+ CertificateCreateOrUpdateParameters createParameters;
+ if (keyvault == null)
{
- Data = Convert.ToBase64String(certificateBytes),
- Password = pfxPassword
- };
+ createParameters = new CertificateCreateOrUpdateParameters
+ {
+ Data = Convert.ToBase64String(certificateBytes),
+ Password = pfxPassword
+ };
+ }
+ else
+ {
+ createParameters = new CertificateCreateOrUpdateParameters
+ {
+ KeyVault = new KeyVaultContractCreateProperties
+ {
+ IdentityClientId = keyvault?.IdentityClientId,
+ SecretIdentifier = keyvault?.SecretIdentifier
+ }
+ };
+ }
Client.Certificate.CreateOrUpdate(context.ResourceGroupName, context.ServiceName, certificateId, createParameters, "*");
@@ -2483,6 +2534,15 @@ public void CertificateRemove(PsApiManagementContext context, string certificate
{
Client.Certificate.Delete(context.ResourceGroupName, context.ServiceName, certificateId, "*");
}
+
+ public PsApiManagementKeyVaultEntity CertificateKeyVaultRefresh(string resourceGroupName, string serviceName, string certificateId)
+ {
+ Client.Certificate.RefreshSecret(resourceGroupName, serviceName, certificateId);
+ var response = Client.Certificate.Get(resourceGroupName, serviceName, certificateId);
+ var certificate = Mapper.Map(response.KeyVault);
+
+ return certificate;
+ }
#endregion
#region Authorization Servers
@@ -2547,7 +2607,7 @@ public PsApiManagementOAuth2AuthorizationServer AuthorizationServerCreate(
AuthorizationMethods = GetAuthorizationMethods(authorizationRequestMethods),
GrantTypes = Mapper.Map>(grantTypes),
ClientAuthenticationMethod = Mapper.Map>(clientAuthenticationMethods),
- SupportState = supportState ?? false,
+ SupportState = supportState ?? false,
DefaultScope = defaultScope,
BearerTokenSendingMethods = Mapper.Map>(accessTokenSendingMethods),
ResourceOwnerUsername = resourceOwnerUsername,
@@ -2662,21 +2722,29 @@ public void AuthorizationServerRemove(PsApiManagementContext context, string ser
AuthorizationMethod? method;
switch (requestMethod)
{
- case PsApiManagementAuthorizationRequestMethod.Get: method = AuthorizationMethod.GET;
+ case PsApiManagementAuthorizationRequestMethod.Get:
+ method = AuthorizationMethod.GET;
break;
- case PsApiManagementAuthorizationRequestMethod.Post: method = AuthorizationMethod.POST;
+ case PsApiManagementAuthorizationRequestMethod.Post:
+ method = AuthorizationMethod.POST;
break;
- case PsApiManagementAuthorizationRequestMethod.Head: method = AuthorizationMethod.HEAD;
+ case PsApiManagementAuthorizationRequestMethod.Head:
+ method = AuthorizationMethod.HEAD;
break;
- case PsApiManagementAuthorizationRequestMethod.Options: method = AuthorizationMethod.OPTIONS;
+ case PsApiManagementAuthorizationRequestMethod.Options:
+ method = AuthorizationMethod.OPTIONS;
break;
- case PsApiManagementAuthorizationRequestMethod.Trace: method = AuthorizationMethod.TRACE;
+ case PsApiManagementAuthorizationRequestMethod.Trace:
+ method = AuthorizationMethod.TRACE;
break;
- case PsApiManagementAuthorizationRequestMethod.Put: method = AuthorizationMethod.PUT;
+ case PsApiManagementAuthorizationRequestMethod.Put:
+ method = AuthorizationMethod.PUT;
break;
- case PsApiManagementAuthorizationRequestMethod.Patch: method = AuthorizationMethod.PATCH;
+ case PsApiManagementAuthorizationRequestMethod.Patch:
+ method = AuthorizationMethod.PATCH;
break;
- case PsApiManagementAuthorizationRequestMethod.Delete: method = AuthorizationMethod.DELETE;
+ case PsApiManagementAuthorizationRequestMethod.Delete:
+ method = AuthorizationMethod.DELETE;
break;
default: throw new Exception("Unknown Authorization Request Method found " + requestMethod);
}
@@ -2747,8 +2815,10 @@ public PsApiManagementLogger LoggerCreate(
IDictionary credentials,
bool isBuffered)
{
- var loggerCreateParameters = new LoggerContract(loggerType, credentials)
+ var loggerCreateParameters = new LoggerContract()
{
+ LoggerType = loggerType,
+ Credentials = credentials,
Description = description,
IsBuffered = isBuffered
};
@@ -2825,20 +2895,43 @@ public void LoggerSet(
public PsApiManagementNamedValue NamedValueCreate(
PsApiManagementContext context,
string propertyId,
- string propertyName,
- string propertyValue,
bool secret,
- IList tags = null)
+ string propertyName = null,
+ string propertyValue = null,
+ IList tags = null,
+ PsApiManagementKeyVaultEntity keyvault = null)
+
{
- var propertyCreateParameters = new NamedValueCreateContract(propertyName, propertyValue)
+ NamedValueCreateContract propertyCreateParameters;
+
+ if (keyvault == null)
{
- Secret = secret,
- Tags = tags
- };
+ propertyCreateParameters = new NamedValueCreateContract
+ {
+ DisplayName = propertyName,
+ Value = propertyValue,
+ Secret = secret,
+ Tags = tags
+ };
+ }
+ else
+ {
+ propertyCreateParameters = new NamedValueCreateContract
+ {
+ DisplayName = propertyName,
+ KeyVault = new KeyVaultContractCreateProperties
+ {
+ IdentityClientId = keyvault?.IdentityClientId,
+ SecretIdentifier = keyvault?.SecretIdentifier
+ },
+ Secret = secret,
+ Tags = tags
+ };
+ }
var propertyResponse = Client.NamedValue.CreateOrUpdate(
- context.ResourceGroupName,
- context.ServiceName,
+ context.ResourceGroupName,
+ context.ServiceName,
propertyId,
propertyCreateParameters);
@@ -2910,21 +3003,20 @@ public void NamedValueRemove(PsApiManagementContext context, string propertyId)
public void NamedValueSet(
PsApiManagementContext context,
string propertyId,
- string propertyName,
- string propertyValue,
bool? isSecret,
- IList tags = null)
+ string propertyName = null,
+ string propertyValue = null,
+ IList tags = null,
+ PsApiManagementKeyVaultEntity keyvault = null)
{
var existingProperty = Client.NamedValue.Get(context.ResourceGroupName, context.ServiceName, propertyId);
- if (existingProperty.Secret == true)
+ if (existingProperty.KeyVault == null && existingProperty.Secret == true)
{
var existingPropertySecretValue = Client.NamedValue.ListValue(context.ResourceGroupName, context.ServiceName, propertyId);
existingProperty.Value = existingPropertySecretValue.Value;
}
- var propertyToUpdate = new NamedValueCreateContract(existingProperty.DisplayName, existingProperty.Value, existingProperty.Id,
- existingProperty.Name, existingProperty.Type, existingProperty.Tags, existingProperty.Secret);
-
+ var propertyToUpdate = new NamedValueUpdateParameters();
if (!string.IsNullOrWhiteSpace(propertyName))
{
@@ -2941,18 +3033,36 @@ public void NamedValueSet(
propertyToUpdate.Secret = isSecret.Value;
}
+ if (keyvault != null)
+ {
+ propertyToUpdate.KeyVault = new KeyVaultContractCreateProperties
+ {
+ SecretIdentifier = keyvault.SecretIdentifier,
+ IdentityClientId = keyvault.IdentityClientId
+ };
+ }
+
if (tags != null)
{
propertyToUpdate.Tags = tags;
}
- Client.NamedValue.CreateOrUpdate(
+ Client.NamedValue.Update(
context.ResourceGroupName,
context.ServiceName,
propertyId,
propertyToUpdate,
"*");
}
+
+ public PsApiManagementNamedValue NamedValueKeyVaultRefresh(string resourceGroupName, string serviceName, string namedvalueId)
+ {
+ Client.NamedValue.RefreshSecret(resourceGroupName, serviceName, namedvalueId);
+ var response = Client.NamedValue.Get(resourceGroupName, serviceName, namedvalueId);
+ var namedvalue = Mapper.Map(response);
+
+ return namedvalue;
+ }
#endregion
#region OpenIdConnectProvider
@@ -3088,24 +3198,43 @@ public void OpenIdConnectProviderSet(
#endregion
#region TenantAccessInformation
+ //replace with listsecret
public PsApiManagementAccessInformation GetTenantGitAccessInformation(PsApiManagementContext context)
{
- var response = Client.TenantAccessGit.Get(
+ var response = Client.TenantAccess.ListSecrets(
context.ResourceGroupName,
- context.ServiceName);
+ context.ServiceName,
+ "gitaccess");
return Mapper.Map(response);
}
public PsApiManagementAccessInformation GetTenantGitAccessInformationSecrets(PsApiManagementContext context)
{
- var response = Client.TenantAccessGit.ListSecrets(
+ var response = Client.TenantAccess.ListSecrets(
context.ResourceGroupName,
- context.ServiceName);
+ context.ServiceName,
+ "gitaccess");
return Mapper.Map(response);
}
+ public void RegeneratePrimaryKey(PsApiManagementContext context)
+ {
+ Client.TenantAccessGit.RegeneratePrimaryKey(
+ context.ResourceGroupName,
+ context.ServiceName,
+ "access");
+ }
+
+ public void RegenerateSecondaryKey(PsApiManagementContext context)
+ {
+ Client.TenantAccessGit.RegenerateSecondaryKey(
+ context.ResourceGroupName,
+ context.ServiceName,
+ "access");
+ }
+
#endregion
#region TenantConfiguration
@@ -3181,7 +3310,8 @@ public PsApiManagementAccessInformation GetTenantAccessInformation(PsApiManageme
{
var response = Client.TenantAccess.Get(
context.ResourceGroupName,
- context.ServiceName);
+ context.ServiceName,
+ "access");
return Mapper.Map(response);
}
@@ -3190,7 +3320,8 @@ public PsApiManagementAccessInformation GetTenantAccessInformationSecrets(PsApiM
{
var response = Client.TenantAccess.ListSecrets(
context.ResourceGroupName,
- context.ServiceName);
+ context.ServiceName,
+ "access");
return Mapper.Map(response);
}
@@ -3203,7 +3334,7 @@ public void TenantAccessSet(
{
Enabled = enabledTenantAccess
};
- Client.TenantAccess.Update(context.ResourceGroupName, context.ServiceName, accessInformationParams, "*");
+ Client.TenantAccess.Update(context.ResourceGroupName, context.ServiceName, accessInformationParams, "access", "*");
}
#endregion
@@ -3261,7 +3392,7 @@ public PsApiManagementIdentityProvider IdentityProviderCreate(
context.ResourceGroupName,
context.ServiceName,
identityProviderName,
- identityProviderCreateParameters);
+ identityProviderCreateParameters);
var identityProvider = Mapper.Map(response);
return identityProvider;
@@ -3309,9 +3440,9 @@ public void IdentityProviderRemove(PsApiManagementContext context, string identi
public void IdentityProviderSet(
string resourceGroupName,
string serviceName,
- string identityProviderName,
- string clientId,
- string clientSecret,
+ string identityProviderName,
+ string clientId,
+ string clientSecret,
string[] allowedTenant,
string authority,
string signinPolicyName,
@@ -3320,7 +3451,7 @@ public void IdentityProviderSet(
string profileEditPolicyName,
string signinTenant,
PsApiManagementIdentityProvider identityProvider)
- {
+ {
var parameters = new IdentityProviderUpdateParameters();
if (identityProvider != null)
@@ -3423,7 +3554,7 @@ public PsApiManagementBackend BackendCreate(
if (skipCertificateChainValidation.HasValue)
{
- backendCreateParams.Tls.ValidateCertificateChain = !skipCertificateChainValidation.Value;
+ backendCreateParams.Tls.ValidateCertificateChain = !skipCertificateChainValidation.Value;
}
}
@@ -3598,9 +3729,10 @@ public PsApiManagementCache CacheCreate(
string cacheId,
string connectionString,
string description,
- string resourceid)
+ string resourceid,
+ string UseFromLocation)
{
- var cacheCreateParameters = new CacheContract(connectionString);
+ var cacheCreateParameters = new CacheContract(connectionString, UseFromLocation);
if (description != null)
{
cacheCreateParameters.Description = description;
@@ -3650,12 +3782,13 @@ public void CacheRemove(string resourceGroupName, string serviceName, string cac
}
public void CacheSet(
- string resourceGroupName,
- string serviceName,
+ string resourceGroupName,
+ string serviceName,
string cacheId,
string connectionString,
string description,
string resourceId,
+ string UseFromLocation,
PsApiManagementCache cacheObject)
{
CacheUpdateParameters parameters;
@@ -3683,6 +3816,11 @@ public void CacheSet(
parameters.ResourceId = resourceId;
}
+ if (UseFromLocation != null)
+ {
+ parameters.UseFromLocation = UseFromLocation;
+ }
+
Client.Cache.Update(
resourceGroupName,
serviceName,
@@ -3709,7 +3847,7 @@ public PsApiManagementDiagnostic DiagnosticCreate(
{
diagnosticContract.AlwaysLog = Utils.GetAlwaysLog(alwaysLog);
}
-
+
if (sampling != null)
{
diagnosticContract.Sampling = Mapper.Map(sampling);
@@ -3743,7 +3881,7 @@ public PsApiManagementDiagnostic DiagnosticCreate(
diagnosticId,
diagnosticContract);
}
-
+
var diagnostic = Mapper.Map(diagnosticResult);
return diagnostic;
@@ -3789,7 +3927,7 @@ public PsApiManagementDiagnostic DiagnosticSetTenantLevel(
diagnosticContract = Client.Diagnostic.Get(
resourceGroupName,
serviceName,
- diagnosticId);
+ diagnosticId);
}
else
{
@@ -3836,7 +3974,7 @@ public PsApiManagementDiagnostic DiagnosticSetApiLevel(
string resourceGroupName,
string serviceName,
string apiId,
- string diagnosticId,
+ string diagnosticId,
string loggerId,
string alwaysLog,
PsApiManagementSamplingSetting sampling,
@@ -4174,7 +4312,7 @@ public PsApiManagementGatewayHostnameConfiguration GatewayHostnameConfigurationC
public void GatewayHostnameConfigurationRemove(string resourceGroupName, string serviceName, string gatewayId, string hostnameConfigurationId)
{
- Client.GatewayHostnameConfiguration.Delete(resourceGroupName, serviceName, gatewayId, hostnameConfigurationId);
+ Client.GatewayHostnameConfiguration.Delete(resourceGroupName, serviceName, gatewayId, hostnameConfigurationId, "*");
}
#endregion
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendCredential.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendCredential.cs
index e47d6a30eeeb..c5a798e04743 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendCredential.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendCredential.cs
@@ -30,6 +30,12 @@ public class NewAzureApiManagementBackendCredential : AzureApiManagementCmdletBa
HelpMessage = "Client Certificate Thumbprints. This parameter is optional.")]
public string[] CertificateThumbprint { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = false,
+ HelpMessage = "Client Certificate Id. This parameter is optional.")]
+ public string[] CertificateId { get; set; }
+
[Parameter(
ValueFromPipelineByPropertyName = false,
Mandatory = false,
@@ -58,7 +64,11 @@ public override void ExecuteApiManagementCmdlet()
{
var backendCredentials = new PsApiManagementBackendCredential();
- if (CertificateThumbprint != null && CertificateThumbprint.Any())
+ if (CertificateId != null && CertificateId.Any())
+ {
+ backendCredentials.Certificate = CertificateId;
+ }
+ else if (CertificateThumbprint != null && CertificateThumbprint.Any())
{
backendCredentials.Certificate = CertificateThumbprint;
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendServiceFabric.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendServiceFabric.cs
index 161b128e95ff..a9eb1ab30578 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendServiceFabric.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementBackendServiceFabric.cs
@@ -30,10 +30,16 @@ public class NewAzureApiManagementBackendServiceFabric : AzureApiManagementCmdle
[Parameter(
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Client Certificate Thumbprint for the management endpoint. This parameter is required.")]
public string ClientCertificateThumbprint { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Client Certificate Id for the management endpoint. This parameter is optional.")]
+ public string ClientCertificateId { get; set; }
+
[Parameter(
ValueFromPipelineByPropertyName = false,
Mandatory = false,
@@ -58,6 +64,7 @@ public override void ExecuteApiManagementCmdlet()
{
var serviceFabricObject = new PsApiManagementServiceFabric();
serviceFabricObject.ManagementEndpoints = ManagementEndpoint;
+ serviceFabricObject.ClientCertificateId = ClientCertificateId;
serviceFabricObject.ClientCertificateThumbprint = ClientCertificateThumbprint;
if (MaxPartitionResolutionRetry.HasValue)
{
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCache.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCache.cs
index 379013be3bbe..76c8b77f829f 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCache.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCache.cs
@@ -57,6 +57,13 @@ public class NewAzureApiManagementCache : AzureApiManagementCmdletBase
[ValidateLength(1, 2000)]
public String Description { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Cache UseFromLocation. This parameter is optional, default value 'default'.")]
+ [ValidateLength(1, 2000)]
+ public String UseFromLocation { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
string cacheId = CacheId ?? "default";
@@ -68,7 +75,8 @@ public override void ExecuteApiManagementCmdlet()
cacheId,
ConnectionString,
Description,
- AzureRedisResourceId);
+ AzureRedisResourceId,
+ UseFromLocation ?? "default");
WriteObject(cache);
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCertificate.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCertificate.cs
index 8a2d0838e935..d5ccebd8e1a7 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCertificate.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementCertificate.cs
@@ -46,55 +46,73 @@ public class NewAzureApiManagementCertificate : AzureApiManagementCmdletBase
[Parameter(
ParameterSetName = FromFile,
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Path to the certificate file in .pfx format to be created/uploaded. This parameter is required if -PfxBytes not specified.")]
public String PfxFilePath { get; set; }
[Parameter(
ParameterSetName = Raw,
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Bytes of the certificate file in .pfx format to be created/uploaded. This parameter is required if -PfxFilePath not specified.")]
public Byte[] PfxBytes { get; set; }
[Parameter(
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Password for the certificate. This parameter is required.")]
[ValidateNotNullOrEmpty]
public String PfxPassword { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "KeyVault used to fetch certificate data." +
+ "This parameter is required if -PfxFilePath not specified.")]
+ public PsApiManagementKeyVaultEntity KeyVault { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
var certificateId = CertificateId ?? Guid.NewGuid().ToString("N");
- byte[] rawBytes;
- if (ParameterSetName.Equals(FromFile))
- {
- FileInfo localFile = new FileInfo(this.GetUnresolvedProviderPathFromPSPath(this.PfxFilePath));
- if (!localFile.Exists)
- {
- throw new FileNotFoundException(string.Format(CultureInfo.CurrentCulture, Resources.SourceFileNotFound, PfxFilePath));
- }
+ PsApiManagementCertificate certificate;
- using (var certStream = File.OpenRead(localFile.FullName))
- {
- rawBytes = new byte[certStream.Length];
- certStream.Read(rawBytes, 0, rawBytes.Length);
- }
- }
- else if (ParameterSetName.Equals(Raw))
+ if (KeyVault != null)
{
- rawBytes = PfxBytes;
+ certificate = Client.CertificateCreate(Context, certificateId, null, null, KeyVault);
+
}
else
{
- throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
- }
+ byte[] rawBytes;
+
+ if (ParameterSetName.Equals(FromFile))
+ {
+ FileInfo localFile = new FileInfo(this.GetUnresolvedProviderPathFromPSPath(this.PfxFilePath));
+ if (!localFile.Exists)
+ {
+ throw new FileNotFoundException(string.Format(CultureInfo.CurrentCulture, Resources.SourceFileNotFound, PfxFilePath));
+ }
+
+ using (var certStream = File.OpenRead(localFile.FullName))
+ {
+ rawBytes = new byte[certStream.Length];
+ certStream.Read(rawBytes, 0, rawBytes.Length);
+ }
+ }
+ else if (ParameterSetName.Equals(Raw))
+ {
+ rawBytes = PfxBytes;
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
+ }
- // check for valid certificate file/bytes
- new X509Certificate2(rawBytes, PfxPassword);
+ // check for valid certificate file/bytes
+ new X509Certificate2(rawBytes, PfxPassword);
- var certificate = Client.CertificateCreate(Context, certificateId, rawBytes, PfxPassword);
+ certificate = Client.CertificateCreate(Context, certificateId, rawBytes, PfxPassword);
+ }
WriteObject(certificate);
}
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementKeyVaultObject.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementKeyVaultObject.cs
new file mode 100644
index 000000000000..570be5c47816
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementKeyVaultObject.cs
@@ -0,0 +1,47 @@
+//
+// 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.Commands
+{
+ using System.Management.Automation;
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementKeyVaultObject"), OutputType(typeof(PsApiManagementKeyVaultEntity))]
+ public class NewAzureApiManagementKeyVaultObject : AzureApiManagementCmdletBase
+ {
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = true,
+ HelpMessage = "Secret Identifier of this Key Vault.")]
+ [ValidateNotNullOrEmpty]
+ public string SecretIdentifier { get; set; }
+
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ Mandatory = false,
+ HelpMessage = "Identity Client Id of the user-assigned Managed Identity. Will default system-assigned if leave empty.")]
+ public string IdentityClientId { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ WriteObject(
+ new PsApiManagementKeyVaultEntity
+ {
+ SecretIdentifier = SecretIdentifier,
+ IdentityClientId = IdentityClientId
+ });
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementNamedValue.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementNamedValue.cs
index 1c844c3bcd49..48b0bc208f54 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementNamedValue.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/NewAzureApiManagementNamedValue.cs
@@ -40,7 +40,7 @@ public class NewAzureApiManagementNamedValue : AzureApiManagementCmdletBase
[Parameter(
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Name of the named value. Maximum length is 100 characters." +
" It may contain only letters, digits, period, dash, and underscore characters." +
" This parameter is required.")]
@@ -49,7 +49,7 @@ public class NewAzureApiManagementNamedValue : AzureApiManagementCmdletBase
[Parameter(
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Value of the named value. Can contain policy expressions. Maximum length is 1000 characters." +
" It may not be empty or consist only of whitespace. This parameter is required.")]
[ValidateNotNullOrEmpty]
@@ -68,6 +68,13 @@ public class NewAzureApiManagementNamedValue : AzureApiManagementCmdletBase
HelpMessage = "Tags to be associated with named value. This parameter is optional.")]
public string[] Tag { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "KeyVault used to fetch Namedvalue data." +
+ "This parameter is required if Value not specified.")]
+ public PsApiManagementKeyVaultEntity KeyVault { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
string propertyId = NamedValueId ?? Guid.NewGuid().ToString("N");
@@ -77,10 +84,11 @@ public override void ExecuteApiManagementCmdlet()
var prop = Client.NamedValueCreate(
Context,
propertyId,
+ Secret,
Name,
Value,
- Secret,
- Tag);
+ Tag,
+ KeyVault);
WriteObject(prop);
}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementCertificate.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementCertificate.cs
index ec00f6b8a8e9..10b007177fd0 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementCertificate.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementCertificate.cs
@@ -47,7 +47,7 @@ public class SetAzureApiManagementCertificate : AzureApiManagementCmdletBase
[Parameter(
ParameterSetName = FromFile,
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Path to the certificate file in .pfx format to be created/uploaded. " +
"This parameter is required if -PfxBytes not specified.")]
public String PfxFilePath { get; set; }
@@ -55,15 +55,15 @@ public class SetAzureApiManagementCertificate : AzureApiManagementCmdletBase
[Parameter(
ParameterSetName = Raw,
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
+ Mandatory = false,
HelpMessage = "Bytes of the certificate file in .pfx format to be created/uploaded. " +
"This parameter is required if -PfxFilePath not specified.")]
public Byte[] PfxBytes { get; set; }
[Parameter(
ValueFromPipelineByPropertyName = true,
- Mandatory = true,
- HelpMessage = "Password for the certificate. This parameter is required.")]
+ Mandatory = false,
+ HelpMessage = "Password for the certificate. This parameter is optional.")]
[ValidateNotNullOrEmpty]
public String PfxPassword { get; set; }
@@ -75,36 +75,52 @@ public class SetAzureApiManagementCertificate : AzureApiManagementCmdletBase
" representing the modified certificate.")]
public SwitchParameter PassThru { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "KeyVault used to fetch certificate data." +
+ "This parameter is required if -PfxFilePath not specified.")]
+ public PsApiManagementKeyVaultEntity KeyVault { get; set; }
+
public override void ExecuteApiManagementCmdlet()
{
- byte[] rawBytes;
- if (ParameterSetName.Equals(FromFile))
- {
- FileInfo localFile = new FileInfo(this.GetUnresolvedProviderPathFromPSPath(this.PfxFilePath));
- if (!localFile.Exists)
- {
- throw new FileNotFoundException(string.Format(CultureInfo.CurrentCulture, Resources.SourceFileNotFound, this.PfxFilePath));
- }
+ PsApiManagementCertificate certificate;
- using (var certStream = File.OpenRead(localFile.FullName))
- {
- rawBytes = new byte[certStream.Length];
- certStream.Read(rawBytes, 0, rawBytes.Length);
- }
- }
- else if (ParameterSetName.Equals(Raw))
+ if (KeyVault != null)
{
- rawBytes = PfxBytes;
+ certificate = Client.CertificateSet(Context, CertificateId, null, null, KeyVault);
}
else
{
- throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
- }
+ byte[] rawBytes;
+ if (ParameterSetName.Equals(FromFile))
+ {
+ FileInfo localFile = new FileInfo(this.GetUnresolvedProviderPathFromPSPath(this.PfxFilePath));
+ if (!localFile.Exists)
+ {
+ throw new FileNotFoundException(string.Format(CultureInfo.CurrentCulture, Resources.SourceFileNotFound, this.PfxFilePath));
+ }
+
+ using (var certStream = File.OpenRead(localFile.FullName))
+ {
+ rawBytes = new byte[certStream.Length];
+ certStream.Read(rawBytes, 0, rawBytes.Length);
+ }
+ }
+ else if (ParameterSetName.Equals(Raw))
+ {
+ rawBytes = PfxBytes;
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Parameter set name '{0}' is not supported.", ParameterSetName));
+ }
- // check for valid certificate file/bytes
- new X509Certificate2(rawBytes, PfxPassword);
+ // check for valid certificate file/bytes
+ new X509Certificate2(rawBytes, PfxPassword);
- var certificate = Client.CertificateSet(Context, CertificateId, rawBytes, PfxPassword);
+ certificate = Client.CertificateSet(Context, CertificateId, rawBytes, PfxPassword, null);
+ }
if (PassThru)
{
WriteObject(certificate);
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementNamedValue.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementNamedValue.cs
index 670342b179d2..1d9b512ce55c 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementNamedValue.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SetAzureApiManagementNamedValue.cs
@@ -81,9 +81,9 @@ public override void ExecuteApiManagementCmdlet()
Client.NamedValueSet(
Context,
NamedValueId,
+ Secret,
Name,
Value,
- Secret,
Tag);
if (PassThru)
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SyncAzureApiManagementKeyVaultSecret.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SyncAzureApiManagementKeyVaultSecret.cs
new file mode 100644
index 000000000000..8d89bf9e0d87
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/SyncAzureApiManagementKeyVaultSecret.cs
@@ -0,0 +1,131 @@
+//
+// 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.Commands
+{
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models;
+ using Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Properties;
+ using System;
+ using System.Management.Automation;
+
+ [Cmdlet("Sync", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementKeyVaultSecret", SupportsShouldProcess = true, DefaultParameterSetName = ResourceIdParameterSet)]
+ [OutputType(typeof(PsApiManagementKeyVaultEntity), ParameterSetName = new[] { ResourceIdParameterSet, ByInputObjectParameterSet })]
+ public class SyncAzureApiManagementKeyVaultSecret : AzureApiManagementCmdletBase
+ {
+ #region ParameterSets
+ private const string ResourceIdParameterSet = "ResourceIdParameterSet";
+ protected const string ByInputObjectParameterSet = "ByInputObject";
+ #endregion
+
+ [Parameter(
+ ParameterSetName = ResourceIdParameterSet,
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = true,
+ HelpMessage = "Arm ResourceId of the Keyvault Based object. This parameter is required.")]
+ [ValidateNotNullOrEmpty]
+ public String ResourceId { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByInputObjectParameterSet,
+ ValueFromPipeline = true,
+ Mandatory = false,
+ HelpMessage = "Instance of PsApiManagementCert. This parameter or NameValue is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementCertificate InputObjectCert { get; set; }
+
+ [Parameter(
+ ParameterSetName = ByInputObjectParameterSet,
+ ValueFromPipeline = true,
+ Mandatory = false,
+ HelpMessage = "Instance of PsApiManagementNamedvalue. This parameter or Certificate is required.")]
+ [ValidateNotNullOrEmpty]
+ public PsApiManagementNamedValue InputObjectNamedvalue { get; set; }
+
+ public override void ExecuteApiManagementCmdlet()
+ {
+ string resourceGroupName;
+ string serviceName;
+ bool isCert;
+
+ string entityId;
+
+ if (ParameterSetName.Equals(ByInputObjectParameterSet))
+ {
+ if (InputObjectNamedvalue != null)
+ {
+ isCert = false;
+ entityId = InputObjectNamedvalue.NamedValueId;
+ resourceGroupName = InputObjectNamedvalue.ResourceGroupName;
+ serviceName = InputObjectNamedvalue.ServiceName;
+ }
+ else if (InputObjectCert != null)
+ {
+ isCert = true;
+ entityId = InputObjectCert.CertificateId;
+ resourceGroupName = InputObjectCert.ResourceGroupName;
+ serviceName = InputObjectCert.ServiceName;
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Object not exist."));
+ }
+ }
+ else
+ {
+ var split = ResourceId.Split('/');
+ var entityType = split[split.Length - 2];
+ if (string.Equals(entityType, "certificates", StringComparison.OrdinalIgnoreCase))
+ {
+ isCert = true;
+ var psBackend = new PsApiManagementCertificate(ResourceId);
+ resourceGroupName = psBackend.ResourceGroupName;
+ serviceName = psBackend.ServiceName;
+ entityId = psBackend.CertificateId;
+ }
+ else if (string.Equals(entityType, "namedvalues", StringComparison.OrdinalIgnoreCase))
+ {
+ isCert = false;
+ var psBackend = new PsApiManagementNamedValue(ResourceId);
+ resourceGroupName = psBackend.ResourceGroupName;
+ serviceName = psBackend.ServiceName;
+ entityId = psBackend.NamedValueId;
+ }
+ else
+ {
+ throw new InvalidOperationException(string.Format("Object with Id {0} supported for a KeyVault refresh.", ResourceId));
+ }
+ }
+
+ if (string.IsNullOrEmpty(entityId))
+ {
+ throw new InvalidOperationException(string.Format("Object with Id {0} supported for a KeyVault refresh.", entityId));
+
+ }
+
+ if (ShouldProcess(entityId, Resources.RefreshKeyVaultBasedObject))
+ {
+ if (isCert)
+ {
+ var entity = Client.CertificateKeyVaultRefresh(resourceGroupName, serviceName, entityId);
+ WriteObject(entity);
+ }
+ else
+ {
+ var entity = Client.NamedValueKeyVaultRefresh(resourceGroupName, serviceName, entityId);
+ WriteObject(entity);
+ }
+ }
+ }
+ }
+}
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementCache.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementCache.cs
index 561889ec743a..9dda9b9c22e0 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementCache.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Commands/UpdateAzureApiManagementCache.cs
@@ -82,6 +82,13 @@ public class UpdateAzureApiManagementCache : AzureApiManagementCmdletBase
[ValidateLength(1, 2000)]
public String Description { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = true,
+ Mandatory = false,
+ HelpMessage = "Cache UseFromLocation. This parameter is optional, default value 'default'.")]
+ [ValidateLength(1, 2000)]
+ public String UseFromLocation { get; set; }
+
[Parameter(
ValueFromPipelineByPropertyName = true,
Mandatory = false,
@@ -125,6 +132,7 @@ public override void ExecuteApiManagementCmdlet()
ConnectionString,
Description,
ResourceId,
+ UseFromLocation,
InputObject);
if (PassThru)
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCache.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCache.cs
index 5fb10e76b955..fabbac019b6b 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCache.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCache.cs
@@ -42,6 +42,8 @@ public class PsApiManagementCache : PsApiManagementArmResource
///
public string AzureRedisResourceId { get; set; }
+ public string UseFromLocation { get; set; }
+
public PsApiManagementCache() { }
public PsApiManagementCache(string armResourceId)
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCertificate.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCertificate.cs
index 3b7e52c22021..3e9bf8077d03 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCertificate.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementCertificate.cs
@@ -29,6 +29,8 @@ public class PsApiManagementCertificate : PsApiManagementArmResource
public DateTime ExpirationDate { get; set; }
+ public PsApiManagementKeyVaultEntity KeyVault { get; set; }
+
public PsApiManagementCertificate() { }
public PsApiManagementCertificate(string armResourceId)
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultEntity.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultEntity.cs
new file mode 100644
index 000000000000..06ff1a7bd059
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultEntity.cs
@@ -0,0 +1,29 @@
+//
+// 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
+{
+ using System.Collections;
+ using System.Collections.Generic;
+
+ public class PsApiManagementKeyVaultEntity
+ {
+ public string SecretIdentifier { get; set; }
+
+ public string IdentityClientId { get; set; }
+
+ public PsApiManagementKeyVaultLastStatus LastStatus { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultLastStatus.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultLastStatus.cs
new file mode 100644
index 000000000000..9e2b257c1ac6
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultLastStatus.cs
@@ -0,0 +1,28 @@
+//
+// 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
+{
+ using System;
+
+ public class PsApiManagementKeyVaultLastStatus
+ {
+ public PsApiManagementKeyVaultLastStatusCode Code { get; set; }
+
+ public string Message { get; set; }
+
+ public DateTime TimeStampUtc { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultLastStatusCode.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultLastStatusCode.cs
new file mode 100644
index 000000000000..afba6edfa060
--- /dev/null
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementKeyVaultLastStatusCode.cs
@@ -0,0 +1,25 @@
+//
+// 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
+{
+ using System;
+
+ public enum PsApiManagementKeyVaultLastStatusCode
+ {
+ Success = 1,
+ Failure = 2
+ }
+}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementNamedValue.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementNamedValue.cs
index 94ef6d44b3e0..ee25e135e3e0 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementNamedValue.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementNamedValue.cs
@@ -12,10 +12,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+using System;
+using System.Text.RegularExpressions;
+
namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models
{
public class PsApiManagementNamedValue : PsApiManagementArmResource
{
+ static readonly Regex NamedvalueIdRegex = new Regex(@"(.*?)/providers/microsoft.apimanagement/service/(?[^/]+)/namedvalues/(?[^/]+)", RegexOptions.IgnoreCase);
+
public string NamedValueId { get; set; }
public string Name { get; set; }
@@ -25,5 +30,27 @@ public class PsApiManagementNamedValue : PsApiManagementArmResource
public string[] Tags { get; set; }
public bool Secret { get; set; }
+
+ public PsApiManagementKeyVaultEntity KeyVault { get; set; }
+
+ public PsApiManagementNamedValue() { }
+
+ public PsApiManagementNamedValue(string armResourceId)
+ {
+ this.Id = armResourceId;
+
+ var match = NamedvalueIdRegex.Match(Id);
+ if (match.Success)
+ {
+ var certificateIdRegexResult = match.Groups["certificateId"];
+ if (certificateIdRegexResult != null && certificateIdRegexResult.Success)
+ {
+ this.NamedValueId = certificateIdRegexResult.Value;
+ return;
+ }
+ }
+
+ throw new ArgumentException($"ResourceId {armResourceId} is not a valid NamedValue Id.");
+ }
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementServiceFabric.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementServiceFabric.cs
index 071728a05bc0..54c2050d2939 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementServiceFabric.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Models/PsApiManagementServiceFabric.cs
@@ -22,6 +22,8 @@ public class PsApiManagementServiceFabric
{
public string ClientCertificateThumbprint { get; set; }
+ public string ClientCertificateId { get; set; }
+
public int? MaxPartitionResolutionRetries { get; set; }
public string[] ManagementEndpoints { get; set; }
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs
index 03f4796b2cb2..d56a75402aa6 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.Designer.cs
@@ -546,6 +546,15 @@ internal static string PublishTenantConfigurationWarning {
}
}
+ ///
+ /// Looks up a localized string similar to Refresh KeyVault Object..
+ ///
+ internal static string RefreshKeyVaultBasedObject {
+ get {
+ return ResourceManager.GetString("RefreshKeyVaultBasedObject", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Saving "{0}" policy to file "{1}"..
///
diff --git a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx
index 8ee5f8026411..d88fca4f295b 100644
--- a/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx
+++ b/src/ApiManagement/ApiManagement.ServiceManagement/Properties/Resources.resx
@@ -438,4 +438,7 @@
Get operation state in '{0}'
Process workflow
+
+ Refresh KeyVault Object.
+
\ 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 867d62577ddd..73b92a699f9d 100644
--- a/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
+++ b/src/ApiManagement/ApiManagement.Test/ApiManagement.Test.csproj
@@ -1,4 +1,4 @@
-
+
ApiManagement
@@ -11,7 +11,7 @@
-
+
diff --git a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1 b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1
index 1758f4029721..8c0b07924c3e 100644
--- a/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1
+++ b/src/ApiManagement/ApiManagement.Test/ScenarioTests/ApiManagementTests.ps1
@@ -298,7 +298,7 @@ function Test-ApiManagementHostnamesCRUD {
$portalHostName = "portalsdk.msitesting.net"
$devPortalHostName = "devportalsdk.msitesting.net"
$proxyHostName1 = "gateway1.msitesting.net"
- $proxyHostName2 = "gateway2.msitesting.net"
+ $proxyHostName2 = "powershelltest.current.int-azure-api.net"
$managementHostName = "mgmt.msitesting.net"
$resourceGroupName = Get-ResourceGroupName
$apiManagementName = Get-ApiManagementServiceName
@@ -306,6 +306,9 @@ function Test-ApiManagementHostnamesCRUD {
$adminEmail = "apim@powershell.org"
$sku = "Premium" # Multiple hostname is only supported in Premium SKU
$capacity = 1
+ $keyVaultId = "https://powershell-apim-kv.vault.azure.net/secrets/powershell-current"
+ $identityClientId = "4b7fdc4d-a154-4830-b399-46a12da1a1e2"
+ $userIdentity = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity"
try {
# Create resource group
@@ -313,15 +316,22 @@ function Test-ApiManagementHostnamesCRUD {
#Create Custom Hostname configuration
$securePfxPassword = ConvertTo-SecureString $certPassword -AsPlainText -Force
- $customProxy1 = New-AzApiManagementCustomHostnameConfiguration -Hostname $proxyHostName1 -HostnameType Proxy -PfxPath $certFilePath -PfxPassword $securePfxPassword -DefaultSslBinding
- $customProxy2 = New-AzApiManagementCustomHostnameConfiguration -Hostname $proxyHostName2 -HostnameType Proxy -PfxPath $certFilePath -PfxPassword $securePfxPassword
+ $customProxy1 = New-AzApiManagementCustomHostnameConfiguration -Hostname $proxyHostName1 `
+ -HostnameType Proxy -PfxPath $certFilePath -PfxPassword $securePfxPassword -DefaultSslBinding
+ $customProxy2 = New-AzApiManagementCustomHostnameConfiguration -Hostname $proxyHostName2 `
+ -HostnameType Proxy -KeyVaultId $keyVaultId -IdentityClientId $identityClientId
$customPortal = New-AzApiManagementCustomHostnameConfiguration -Hostname $portalHostName -HostnameType Portal -PfxPath $certFilePath -PfxPassword $securePfxPassword
$customDevPortal = New-AzApiManagementCustomHostnameConfiguration -Hostname $devPortalHostName -HostnameType DeveloperPortal -PfxPath $certFilePath -PfxPassword $securePfxPassword
$customMgmt = New-AzApiManagementCustomHostnameConfiguration -Hostname $managementHostName -HostnameType Management -PfxPath $certFilePath -PfxPassword $securePfxPassword
$customHostnames = @($customProxy1, $customProxy2, $customPortal, $customMgmt, $customDevPortal)
+ # UserAssigned Identity
+ $userIdentities = @($userIdentity)
+
# Create API Management service
- $result = New-AzApiManagement -ResourceGroupName $resourceGroupName -Location $location -Name $apiManagementName -Organization $organization -AdminEmail $adminEmail -Sku $sku -Capacity $capacity -CustomHostnameConfiguration $customHostnames
+ $result = New-AzApiManagement -ResourceGroupName $resourceGroupName -Location $location `
+ -Name $apiManagementName -Organization $organization -AdminEmail $adminEmail -Sku $sku `
+ -UserAssignedIdentity $userIdentities -Capacity $capacity -CustomHostnameConfiguration $customHostnames
Assert-AreEqual $resourceGroupName $result.ResourceGroupName
Assert-AreEqual $apiManagementName $result.Name
@@ -329,6 +339,8 @@ function Test-ApiManagementHostnamesCRUD {
Assert-AreEqual $sku $result.Sku
Assert-AreEqual 1 $result.Capacity
Assert-AreEqual "None" $result.VpnType
+ # validate ApiManagement Identity
+ Assert-AreEqual "UserAssigned" $result.Identity.Type;
#validate the Proxy Custom Hostname configuration
Assert-NotNull $result.ProxyCustomHostnameConfiguration
@@ -337,19 +349,21 @@ function Test-ApiManagementHostnamesCRUD {
if ($result.ProxyCustomHostnameConfiguration[$i].Hostname -eq $proxyHostName1) {
$found = $found + 1
Assert-AreEqual Proxy $result.ProxyCustomHostnameConfiguration[$i].HostnameType
- Assert-AreEqual $certThumbprint $result.ProxyCustomHostnameConfiguration[$i].CertificateInformation.Thumbprint
+ Assert-NotNull $result.ProxyCustomHostnameConfiguration[$i].CertificateInformation.Thumbprint
Assert-True {$result.ProxyCustomHostnameConfiguration[$i].DefaultSslBinding}
- Assert-False {$result.ProxyCustomHostnameConfiguration[$i].NegotiateClientCertificate}
+ Assert-False {$result.ProxyCustomHostnameConfiguration[$i].NegotiateClientCertificate}
Assert-Null $result.ProxyCustomHostnameConfiguration[$i].KeyVaultId
+ Assert-Null $result.ProxyCustomHostnameConfiguration[$i].IdentityClientId
}
if ($result.ProxyCustomHostnameConfiguration[$i].Hostname -eq $proxyHostName2) {
$found = $found + 1
Assert-AreEqual Proxy $result.ProxyCustomHostnameConfiguration[$i].HostnameType
- Assert-AreEqual $certThumbprint $result.ProxyCustomHostnameConfiguration[$i].CertificateInformation.Thumbprint
+ Assert-NotNull $result.ProxyCustomHostnameConfiguration[$i].CertificateInformation.Thumbprint
# default sslbinding is true for second hostname also, as the ssl certificate is same
- Assert-True {$result.ProxyCustomHostnameConfiguration[$i].DefaultSslBinding}
+ Assert-False {$result.ProxyCustomHostnameConfiguration[$i].DefaultSslBinding}
Assert-False {$result.ProxyCustomHostnameConfiguration[$i].NegotiateClientCertificate}
- Assert-Null $result.ProxyCustomHostnameConfiguration[$i].KeyVaultId
+ Assert-AreEqual $keyVaultId $result.ProxyCustomHostnameConfiguration[$i].KeyVaultId
+ Assert-AreEqual $identityClientId $result.ProxyCustomHostnameConfiguration[$i].IdentityClientId
}
}
@@ -374,7 +388,7 @@ function Test-ApiManagementHostnamesCRUD {
#scm configuration is null
Assert-Null $result.ScmCustomHostnameConfiguration
- # now delete all but one Proxy Custom Hostname
+ # now delete all but one Proxy Custom Hostname
$result.ManagementCustomHostnameConfiguration = $null
$result.PortalCustomHostnameConfiguration = $null
$result.DeveloperPortalHostnameConfiguration = $null
@@ -436,13 +450,14 @@ Then remove one Additional Region and scale up another additional region and Ena
#>
function Test-ApiManagementWithAdditionalRegionsCRUD {
# Setup
- $location = Get-ProviderLocation "Microsoft.ApiManagement/service"
- $resourceGroupName = Get-ResourceGroupName
+ $location = "West US 2"
+ $resourceGroupName = Get-ResourceGroupName
$apiManagementName = Get-ApiManagementServiceName
$organization = "apimpowershellorg"
$adminEmail = "apim@powershell.org"
$sku = "Premium"
- $capacity = 1
+ $capacity = 2
+ $zones = @("1", "2")
$firstAdditionalRegionLocation = "East US"
$secondAdditionalRegionLocation = "South Central US"
$userIdentity = "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/powershelltest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/powershellTestUserIdentity"
@@ -451,14 +466,19 @@ function Test-ApiManagementWithAdditionalRegionsCRUD {
# Create Resource Group
New-AzResourceGroup -Name $resourceGroupName -Location $location
- $firstAdditionalRegion = New-AzApiManagementRegion -Location $firstAdditionalRegionLocation
- $secondAdditionalRegion = New-AzApiManagementRegion -Location $secondAdditionalRegionLocation
+ $firstAdditionalRegion = New-AzApiManagementRegion -Location $firstAdditionalRegionLocation `
+ -Capacity $capacity -Zone $zones -DisableGateway $true
+ $secondAdditionalRegion = New-AzApiManagementRegion -Location $secondAdditionalRegionLocation `
+ -Capacity $capacity -Zone $zones -DisableGateway $true
$regions = @($firstAdditionalRegion, $secondAdditionalRegion)
$userIdentities = @($userIdentity)
# Create API Management service
- $result = New-AzApiManagement -ResourceGroupName $resourceGroupName -Location $location -Name $apiManagementName -Organization $organization -AdminEmail $adminEmail -Sku $sku -Capacity $capacity -AdditionalRegions $regions -UserAssignedIdentity $userIdentities
+ $result = New-AzApiManagement -ResourceGroupName $resourceGroupName `
+ -Location $location -Name $apiManagementName -Organization $organization `
+ -AdminEmail $adminEmail -Sku $sku -Capacity $capacity -AdditionalRegions $regions `
+ -UserAssignedIdentity $userIdentities -Zone $zones -DisableGateway $false -MinimalControlPlaneApiVersion "2019-12-01"
Assert-AreEqual $resourceGroupName $result.ResourceGroupName
Assert-AreEqual $apiManagementName $result.Name
@@ -466,6 +486,8 @@ function Test-ApiManagementWithAdditionalRegionsCRUD {
Assert-AreEqual $sku $result.Sku
Assert-AreEqual $capacity $result.Capacity
Assert-AreEqual "None" $result.VpnType
+ Assert-AreEqual 2 $result.Zone.Count
+ Assert-AreEqual $false $result.DisableGateway
Assert-AreEqual 2 $result.AdditionalRegions.Count
$found = 0
@@ -473,14 +495,18 @@ function Test-ApiManagementWithAdditionalRegionsCRUD {
if ($result.AdditionalRegions[$i].Location.Replace(" ", "") -eq $firstAdditionalRegionLocation.Replace(" ", "")) {
$found = $found + 1
Assert-AreEqual $sku $result.AdditionalRegions[$i].Sku
- Assert-AreEqual 1 $result.AdditionalRegions[$i].Capacity
+ Assert-AreEqual $capacity $result.AdditionalRegions[$i].Capacity
Assert-Null $result.AdditionalRegions[$i].VirtualNetwork
+ Assert-AreEqual $true $result.AdditionalRegions[$i].DisableGateway
+ Assert-AreEqual 2 $result.AdditionalRegions[$i].Zone.Count
}
if ($result.AdditionalRegions[$i].Location.Replace(" ", "") -eq $secondAdditionalRegionLocation.Replace(" ", "")) {
$found = $found + 1
Assert-AreEqual $sku $result.AdditionalRegions[$i].Sku
- Assert-AreEqual 1 $result.AdditionalRegions[$i].Capacity
+ Assert-AreEqual $capacity $result.AdditionalRegions[$i].Capacity
Assert-Null $result.AdditionalRegions[$i].VirtualNetwork
+ Assert-AreEqual $true $result.AdditionalRegions[$i].DisableGateway
+ Assert-AreEqual 2 $result.AdditionalRegions[$i].Zone.Count
}
}
@@ -499,10 +525,11 @@ function Test-ApiManagementWithAdditionalRegionsCRUD {
$newAdditionalRegionCapacity = 2
$apimService = Get-AzApiManagement -ResourceGroupName $resourceGroupName -Name $apiManagementName
$apimService = Remove-AzApiManagementRegion -ApiManagement $apimService -Location $firstAdditionalRegionLocation
- $apimService = Update-AzApiManagementRegion -ApiManagement $apimService -Location $secondAdditionalRegionLocation -Capacity $newAdditionalRegionCapacity -Sku $sku
+ $apimService = Update-AzApiManagementRegion -ApiManagement $apimService -Location $secondAdditionalRegionLocation `
+ -Capacity $newAdditionalRegionCapacity -Sku $sku -Zone "1" -DisableGateway $false
# Set the ApiManagement service and Enable Msi idenity on the service
- $updatedService = Set-AzApiManagement -InputObject $apimService -SystemAssignedIdentity -PassThru
+ $updatedService = Set-AzApiManagement -InputObject $apimService -SystemAssignedIdentity -UserAssignedIdentity $userIdentities -PassThru
Assert-AreEqual $resourceGroupName $updatedService.ResourceGroupName
Assert-AreEqual $apiManagementName $updatedService.Name
Assert-AreEqual $location $updatedService.Location
@@ -513,12 +540,14 @@ function Test-ApiManagementWithAdditionalRegionsCRUD {
Assert-AreEqual 1 $updatedService.AdditionalRegions.Count
$found = 0
# Validate the Additional Region capacity
- for ($i = 0; $i -lt $updatedService.AdditionalRegions.Count; $i++) {
+ for ($i = 0; $i -lt $updatedService.AdditionalRegions.Count; $i++) {
if ($updatedService.AdditionalRegions[$i].Location.Replace(" ", "") -eq $secondAdditionalRegionLocation.Replace(" ", "")) {
$found = $found + 1
Assert-AreEqual $sku $updatedService.AdditionalRegions[$i].Sku
Assert-AreEqual $newAdditionalRegionCapacity $updatedService.AdditionalRegions[$i].Capacity
Assert-Null $updatedService.AdditionalRegions[$i].VirtualNetwork
+ Assert-AreEqual $false $updatedService.AdditionalRegions[$i].DisableGateway
+ Assert-AreEqual 1 $updatedService.AdditionalRegions[$i].Zone.Count
}
}
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 998ca691f5f6..1f7d7d8c3fcc 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/ps1267?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMTI2Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps38?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a95adb44-8052-4863-838a-f6038496d29d"
+ "9f60c1fe-0af4-4430-9339-64476f46e399"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "53a012f5-a260-4f1f-a0fb-c54717c8af2d"
+ "8872881b-04fb-4ff5-8755-ccebfdeeb430"
],
"x-ms-correlation-request-id": [
- "53a012f5-a260-4f1f-a0fb-c54717c8af2d"
+ "8872881b-04fb-4ff5-8755-ccebfdeeb430"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181753Z:53a012f5-a260-4f1f-a0fb-c54717c8af2d"
+ "WESTUS:20210715T144531Z:8872881b-04fb-4ff5-8755-ccebfdeeb430"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:53 GMT"
+ "Thu, 15 Jul 2021 14:45:30 GMT"
],
"Content-Length": [
- "165"
+ "161"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,33 +63,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267\",\r\n \"name\": \"ps1267\",\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/ps38\",\r\n \"name\": \"ps38\",\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/ps1267/providers/Microsoft.ApiManagement/service/ps9700?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
- "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\": \"gateway2.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\": \"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 \"location\": \"East US\"\r\n}",
+ "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": [
- "47d079ac-b46f-4325-8ac9-f58afe4811ba"
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "13664"
+ "11620"
]
},
"ResponseHeaders": {
@@ -100,10 +99,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAGStw=\""
+ "\"AAAAAAA5g50=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -112,8 +111,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95fec9c9-e878-48a5-9762-8a273f3c855e",
- "9d30fac3-60f8-4949-b730-4cb50340ba27"
+ "a4e59f8a-9d09-4b5e-a2da-fe326ed2c7d8",
+ "89f2aef9-7357-4db6-a49c-139b83985d19"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -122,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "1fd2962c-5993-46ea-9c0a-0d2ccabe13a6"
+ "60c18d02-820a-4465-8d7e-7ea4ddebecb9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181758Z:1fd2962c-5993-46ea-9c0a-0d2ccabe13a6"
+ "WESTUS:20210715T144538Z:60c18d02-820a-4465-8d7e-7ea4ddebecb9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:58 GMT"
+ "Thu, 15 Jul 2021 14:45:37 GMT"
],
"Content-Length": [
- "2806"
+ "3436"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -143,27 +142,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700\",\r\n \"name\": \"ps9700\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGStw=\",\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\": \"2020-04-20T18:17:56.3447028Z\",\r\n \"gatewayUrl\": null,\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\": null,\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 },\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 },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.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 },\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 },\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 },\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 }\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\": null\r\n}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "PUT",
- //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine", Justification="Test passwords only valid for the duration of the test")]
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60b287c2-53ad-46e5-9404-d4310a9e85f0"
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -180,10 +178,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAGSxo=\""
+ "\"AAAAAAA5hD8=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -192,8 +190,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ce8fda80-1881-49aa-9bbb-8e34cca129b0",
- "de197558-3f31-4e9d-a48c-ed0fde306386"
+ "42cd6661-f019-41b7-bc3b-8bec34dd0484",
+ "4e9511e9-8f28-4be0-a161-4dd511976646"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -202,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "67dabe09-19db-417c-acce-879beba3a031"
+ "21bae22a-8342-4280-8c97-f15895846861"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183907Z:67dabe09-19db-417c-acce-879beba3a031"
+ "WESTUS:20210715T151951Z:21bae22a-8342-4280-8c97-f15895846861"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:39:06 GMT"
+ "Thu, 15 Jul 2021 15:19:51 GMT"
],
"Content-Length": [
- "3707"
+ "4396"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -223,20 +221,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700\",\r\n \"name\": \"ps9700\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSxo=\",\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\": \"2020-04-20T18:17:56.3447028Z\",\r\n \"gatewayUrl\": \"https://ps9700.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9700-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9700.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9700.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9700.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9700.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9700.azure-api.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 },\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 },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.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 },\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 },\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 },\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.186.29.74\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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}",
+ "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}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -247,7 +248,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -256,7 +257,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "43f36908-c796-477c-a0e2-f8dea46bd508"
+ "957140c1-2b7f-4955-a1e7-5c0d1295b5cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -265,16 +266,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "5b02b1c2-27fc-401a-8cb0-bc272700a885"
+ "fed11895-6293-42b8-aa82-3d94102a3f23"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181859Z:5b02b1c2-27fc-401a-8cb0-bc272700a885"
+ "WESTUS:20210715T144638Z:fed11895-6293-42b8-aa82-3d94102a3f23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:18:58 GMT"
+ "Thu, 15 Jul 2021 14:46:38 GMT"
],
"Expires": [
"-1"
@@ -287,16 +288,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -307,7 +311,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -316,7 +320,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e65d0981-a01f-480e-9f04-dcb236e4b5ba"
+ "cca2aced-6877-4d7b-a850-118b872c6576"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -325,16 +329,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "a11cb8ad-004e-4c7d-b322-94933906d380"
+ "bc8b7556-5b88-41a3-bfc0-c0c63f5a25e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181959Z:a11cb8ad-004e-4c7d-b322-94933906d380"
+ "WESTUS:20210715T144738Z:bc8b7556-5b88-41a3-bfc0-c0c63f5a25e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:19:59 GMT"
+ "Thu, 15 Jul 2021 14:47:38 GMT"
],
"Expires": [
"-1"
@@ -347,16 +351,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -367,7 +374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -376,7 +383,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5dcea61-6d07-4324-b3d9-e30c59adac22"
+ "fd8bc66e-3594-4ac4-b167-f32511bdca51"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -385,16 +392,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "a92fb3ad-1026-4bca-8d4e-94ec73dbd9ae"
+ "ed599aab-0d5a-4eef-8fde-f8c8e947dfeb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182059Z:a92fb3ad-1026-4bca-8d4e-94ec73dbd9ae"
+ "WESTUS:20210715T144839Z:ed599aab-0d5a-4eef-8fde-f8c8e947dfeb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:20:58 GMT"
+ "Thu, 15 Jul 2021 14:48:39 GMT"
],
"Expires": [
"-1"
@@ -407,16 +414,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -427,7 +437,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -436,7 +446,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "50578542-84e4-4c3e-bb9b-551da4b41ae4"
+ "1ebc04a7-2272-4d95-bb23-1dde4a59f9a9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -445,16 +455,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "15315b51-9f3b-4527-9d4c-737d28ff8c1b"
+ "296d21a6-e32c-4411-84bb-d211d0220131"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182200Z:15315b51-9f3b-4527-9d4c-737d28ff8c1b"
+ "WESTUS:20210715T144939Z:296d21a6-e32c-4411-84bb-d211d0220131"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:21:59 GMT"
+ "Thu, 15 Jul 2021 14:49:38 GMT"
],
"Expires": [
"-1"
@@ -467,16 +477,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -487,7 +500,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -496,7 +509,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6f18b5bd-2768-47f1-bf44-c803d8f1112b"
+ "89ada5b7-b77a-4b86-b2cb-9574edb9385d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -505,16 +518,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "335a4cac-cecb-40ca-9072-9bc3403f3633"
+ "2d57531b-d5db-4eb5-ae74-b4e06d4ed07e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182300Z:335a4cac-cecb-40ca-9072-9bc3403f3633"
+ "WESTUS:20210715T145040Z:2d57531b-d5db-4eb5-ae74-b4e06d4ed07e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:23:00 GMT"
+ "Thu, 15 Jul 2021 14:50:39 GMT"
],
"Expires": [
"-1"
@@ -527,16 +540,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -547,7 +563,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -556,7 +572,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5871535f-f397-44bd-916a-aece3cb42d86"
+ "c59084cb-496e-46fb-9883-b8a87b65481a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -565,16 +581,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "805a04b9-317a-48a1-b0ee-0e368b0d51e3"
+ "38c77ec0-d231-45d7-b652-226ae909b03e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182400Z:805a04b9-317a-48a1-b0ee-0e368b0d51e3"
+ "WESTUS:20210715T145140Z:38c77ec0-d231-45d7-b652-226ae909b03e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:24:00 GMT"
+ "Thu, 15 Jul 2021 14:51:39 GMT"
],
"Expires": [
"-1"
@@ -587,16 +603,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -607,7 +626,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -616,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c8e4b605-9583-453a-93dd-48b87fb00c31"
+ "1c3bd32e-8434-4695-9474-aa6600f242aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -625,16 +644,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "77e9c7c1-4003-4ac2-a42d-a2435642e983"
+ "82f46568-f8fb-47bf-91ac-fd78e2590061"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182501Z:77e9c7c1-4003-4ac2-a42d-a2435642e983"
+ "WESTUS:20210715T145240Z:82f46568-f8fb-47bf-91ac-fd78e2590061"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:25:00 GMT"
+ "Thu, 15 Jul 2021 14:52:40 GMT"
],
"Expires": [
"-1"
@@ -647,16 +666,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -667,7 +689,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -676,7 +698,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cc531775-db97-4b9e-ab42-10d4cf2347a1"
+ "a19edb01-3dc9-45f0-88ec-d6fb59a1d419"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -685,16 +707,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "b925f401-d28c-4e2a-80bf-7300c0554098"
+ "4f9cdf60-8a20-43e3-9745-9f7634ad0e30"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182601Z:b925f401-d28c-4e2a-80bf-7300c0554098"
+ "WESTUS:20210715T145341Z:4f9cdf60-8a20-43e3-9745-9f7634ad0e30"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:26:00 GMT"
+ "Thu, 15 Jul 2021 14:53:40 GMT"
],
"Expires": [
"-1"
@@ -707,16 +729,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -727,7 +752,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -736,7 +761,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e66a342b-485f-488c-8a18-616f2fdb814a"
+ "a42d073b-f77f-450f-9eb6-9856b4c28510"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -745,16 +770,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "20bc507a-2190-4855-844f-e7dd7ea1578a"
+ "6e5bf61b-a840-4e3a-b9b0-53b5103c0ab6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182701Z:20bc507a-2190-4855-844f-e7dd7ea1578a"
+ "WESTUS:20210715T145441Z:6e5bf61b-a840-4e3a-b9b0-53b5103c0ab6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:27:01 GMT"
+ "Thu, 15 Jul 2021 14:54:41 GMT"
],
"Expires": [
"-1"
@@ -767,16 +792,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -787,7 +815,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -796,7 +824,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c058821f-e843-430d-aa4c-214806103422"
+ "6d71bfb5-86cb-4371-a5bb-ebe1a647b158"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -805,16 +833,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "5b697fcc-36aa-4d6d-9f03-827e959baf24"
+ "b80dfc83-fb8a-4960-bc3b-d233f44cccdc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182802Z:5b697fcc-36aa-4d6d-9f03-827e959baf24"
+ "WESTUS:20210715T145541Z:b80dfc83-fb8a-4960-bc3b-d233f44cccdc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:28:01 GMT"
+ "Thu, 15 Jul 2021 14:55:41 GMT"
],
"Expires": [
"-1"
@@ -827,16 +855,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -847,7 +878,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -856,7 +887,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2bcc5413-4eb4-4d27-b409-aa370ec3cf81"
+ "ddc696b4-1829-4877-9c23-36922dc02dee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -865,16 +896,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "d157dfe9-3fe5-4720-bc42-b4ca9a189ba9"
+ "2b6a3659-fcc1-4e48-a234-c97913b40554"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T182902Z:d157dfe9-3fe5-4720-bc42-b4ca9a189ba9"
+ "WESTUS:20210715T145642Z:2b6a3659-fcc1-4e48-a234-c97913b40554"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:29:02 GMT"
+ "Thu, 15 Jul 2021 14:56:41 GMT"
],
"Expires": [
"-1"
@@ -887,16 +918,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -907,7 +941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -916,7 +950,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d1b43b8c-cb25-4b7e-959d-785ebc7a40b8"
+ "622f5449-be44-4ea7-9341-06506a957168"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -925,16 +959,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "4325bfd9-a577-4ee1-a10a-80c10cc73fcb"
+ "e7428113-0d3d-4809-9307-87ff7af4d525"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183003Z:4325bfd9-a577-4ee1-a10a-80c10cc73fcb"
+ "WESTUS:20210715T145742Z:e7428113-0d3d-4809-9307-87ff7af4d525"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:30:02 GMT"
+ "Thu, 15 Jul 2021 14:57:42 GMT"
],
"Expires": [
"-1"
@@ -947,16 +981,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -967,7 +1004,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -976,7 +1013,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "541c93d1-c8b9-4d7c-91d1-ea32162f0619"
+ "778be0a0-a673-45c0-a205-da0a7e8d2c7e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -985,16 +1022,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "986f3df6-724a-4586-b877-73b6301558ef"
+ "d3e6219a-e010-4cd1-a405-7737571f136f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183103Z:986f3df6-724a-4586-b877-73b6301558ef"
+ "WESTUS:20210715T145842Z:d3e6219a-e010-4cd1-a405-7737571f136f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:31:03 GMT"
+ "Thu, 15 Jul 2021 14:58:42 GMT"
],
"Expires": [
"-1"
@@ -1007,16 +1044,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1027,7 +1067,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1036,7 +1076,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "05c19a03-2627-4591-a747-359a25a610e8"
+ "59961d33-4961-4ade-b749-10218be988af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1045,16 +1085,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "1ea7fc91-0440-4b0d-af54-c7bcbeba4450"
+ "948b0380-55b9-4608-82d3-c558362655a4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183203Z:1ea7fc91-0440-4b0d-af54-c7bcbeba4450"
+ "WESTUS:20210715T145943Z:948b0380-55b9-4608-82d3-c558362655a4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:32:03 GMT"
+ "Thu, 15 Jul 2021 14:59:43 GMT"
],
"Expires": [
"-1"
@@ -1067,16 +1107,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1087,7 +1130,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1096,7 +1139,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e581cc6-db52-49a1-bbc0-dd1bfd4d7adc"
+ "bb41591b-7251-4e15-a6de-047b5a36e6f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1105,16 +1148,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "e4fba540-5a54-4d21-83e8-073593166a74"
+ "1eab78b7-9ade-4cd0-9b3f-a57d5255e6b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183304Z:e4fba540-5a54-4d21-83e8-073593166a74"
+ "WESTUS:20210715T150043Z:1eab78b7-9ade-4cd0-9b3f-a57d5255e6b1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:33:04 GMT"
+ "Thu, 15 Jul 2021 15:00:42 GMT"
],
"Expires": [
"-1"
@@ -1127,16 +1170,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1147,7 +1193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1156,7 +1202,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73fadffd-03b8-4f1b-aa9c-4cfc61acdc2b"
+ "97e4c693-3fc0-4214-8095-08ea605d4249"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1165,16 +1211,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "0300369e-cf2a-4946-a12d-3aaa7650905d"
+ "8634b099-d1ac-47bd-8d9a-608604e3c35e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183404Z:0300369e-cf2a-4946-a12d-3aaa7650905d"
+ "WESTUS:20210715T150143Z:8634b099-d1ac-47bd-8d9a-608604e3c35e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:34:04 GMT"
+ "Thu, 15 Jul 2021 15:01:43 GMT"
],
"Expires": [
"-1"
@@ -1187,16 +1233,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1207,7 +1256,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1216,7 +1265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef428072-0dad-499c-8272-61fce7f960f8"
+ "1f0d9e6a-1c45-4084-bec3-6df56af025d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1225,16 +1274,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "91f16c3c-4aea-4eef-b418-b3be9cb150d0"
+ "87a75d06-fd48-485e-bbf5-f183a4326241"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183504Z:91f16c3c-4aea-4eef-b418-b3be9cb150d0"
+ "WESTUS:20210715T150244Z:87a75d06-fd48-485e-bbf5-f183a4326241"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:35:04 GMT"
+ "Thu, 15 Jul 2021 15:02:43 GMT"
],
"Expires": [
"-1"
@@ -1247,16 +1296,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1267,7 +1319,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1276,7 +1328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "299bb126-7020-4727-b768-99d3370460b4"
+ "ca4446ae-ae23-40de-80e1-5ca4e1787782"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1285,16 +1337,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "46523ea3-d9fa-42bc-ac00-7c1479e1f8f3"
+ "aadeb593-7204-45ab-a2bf-0cfcb0eca5f4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183605Z:46523ea3-d9fa-42bc-ac00-7c1479e1f8f3"
+ "WESTUS:20210715T150344Z:aadeb593-7204-45ab-a2bf-0cfcb0eca5f4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:36:04 GMT"
+ "Thu, 15 Jul 2021 15:03:44 GMT"
],
"Expires": [
"-1"
@@ -1307,16 +1359,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1327,7 +1382,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1336,7 +1391,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a2bbd9b-729b-460c-be52-b6f5ae0e203a"
+ "9f03073d-a97d-4262-8940-068cdcf172e1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1345,16 +1400,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "62ed5ee6-2374-49c2-8544-178f31944c9b"
+ "cc0b439c-3df4-41c2-b5a9-87b258b53f10"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183705Z:62ed5ee6-2374-49c2-8544-178f31944c9b"
+ "WESTUS:20210715T150445Z:cc0b439c-3df4-41c2-b5a9-87b258b53f10"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:37:04 GMT"
+ "Thu, 15 Jul 2021 15:04:44 GMT"
],
"Expires": [
"-1"
@@ -1367,16 +1422,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1387,7 +1445,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01"
+ "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"
@@ -1396,7 +1454,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9658be36-c4fb-4a8f-a362-788009e74795"
+ "366e63dd-8385-434f-a2a6-58a56d8718f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1405,16 +1463,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "8b932606-2131-4487-ae00-b151e8991f6d"
+ "922b83a2-6221-48d6-8661-424493b51532"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183806Z:8b932606-2131-4487-ae00-b151e8991f6d"
+ "WESTUS:20210715T150545Z:922b83a2-6221-48d6-8661-424493b51532"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:38:05 GMT"
+ "Thu, 15 Jul 2021 15:05:44 GMT"
],
"Expires": [
"-1"
@@ -1427,16 +1485,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9BY3RfNDdmYTNkYjE=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5QlkzUmZORGRtWVROa1lqRT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1446,11 +1507,17 @@
"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": [
- "1bcbfd43-0099-4948-961d-0433717fa8c3"
+ "15c3af06-bc64-439d-a214-da922253a4bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1459,41 +1526,41 @@
"11979"
],
"x-ms-correlation-request-id": [
- "ff5a28b7-3bec-451a-ab0e-1daa11203cee"
+ "54c41e87-f203-4dad-acac-0576b84a834b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T183906Z:ff5a28b7-3bec-451a-ab0e-1daa11203cee"
+ "WESTUS:20210715T150645Z:54c41e87-f203-4dad-acac-0576b84a834b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:39:05 GMT"
- ],
- "Content-Length": [
- "3699"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 15:06:45 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700\",\r\n \"name\": \"ps9700\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSxk=\",\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\": \"2020-04-20T18:17:56.3447028Z\",\r\n \"gatewayUrl\": \"https://ps9700.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9700-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9700.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9700.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9700.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9700.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9700.azure-api.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 },\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 },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gateway2.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 },\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 },\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 },\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.186.29.74\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5VmNHUmhkR1ZmWmpRMk5UaGtaVEE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1504,7 +1571,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01"
+ "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"
@@ -1513,7 +1580,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52a73af0-9683-404b-a553-fb77cdf1e7fe"
+ "ab253513-d241-4fde-b535-d65dfb6bc355"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1522,16 +1589,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "8e8df85a-91d4-4666-bbe0-7927930a6945"
+ "c47337f9-a1af-4b1e-9dbc-fb0722c879ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184008Z:8e8df85a-91d4-4666-bbe0-7927930a6945"
+ "WESTUS:20210715T150745Z:c47337f9-a1af-4b1e-9dbc-fb0722c879ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:40:07 GMT"
+ "Thu, 15 Jul 2021 15:07:45 GMT"
],
"Expires": [
"-1"
@@ -1544,16 +1611,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5VmNHUmhkR1ZmWmpRMk5UaGtaVEE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1564,7 +1634,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01"
+ "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"
@@ -1573,7 +1643,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b78503d0-3133-4d3b-a3ac-9bc7e9dd6cbb"
+ "4c97b1d0-05e0-4124-a70f-06e190ed4328"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1582,16 +1652,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "b2b2c8ef-3169-4d8a-a544-357d146cde1d"
+ "f9924fe9-5ef3-4ba1-801b-7612475e1063"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184108Z:b2b2c8ef-3169-4d8a-a544-357d146cde1d"
+ "WESTUS:20210715T150846Z:f9924fe9-5ef3-4ba1-801b-7612475e1063"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:41:07 GMT"
+ "Thu, 15 Jul 2021 15:08:46 GMT"
],
"Expires": [
"-1"
@@ -1604,16 +1674,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5VmNHUmhkR1ZmWmpRMk5UaGtaVEE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1624,7 +1697,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01"
+ "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"
@@ -1633,7 +1706,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b5ecacf8-8b60-44e9-a4cf-00595faf6f2e"
+ "a12c6ff2-17c4-4242-9024-19d53499c300"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1642,16 +1715,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "f00e3413-cc37-4a71-b95a-182bbcb77c94"
+ "36efa30b-2b4d-4ea5-85d0-8b5e3ec3360a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184208Z:f00e3413-cc37-4a71-b95a-182bbcb77c94"
+ "WESTUS:20210715T150946Z:36efa30b-2b4d-4ea5-85d0-8b5e3ec3360a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:42:08 GMT"
+ "Thu, 15 Jul 2021 15:09:46 GMT"
],
"Expires": [
"-1"
@@ -1664,16 +1737,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5VmNHUmhkR1ZmWmpRMk5UaGtaVEE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1684,7 +1760,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01"
+ "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"
@@ -1693,7 +1769,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "635632e9-e7f0-4846-9706-28d9b6abd0f1"
+ "c8413a0d-6c78-4029-b75b-61456c5956da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1702,16 +1778,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "009b5a84-1947-4086-8e08-f4be5c90c64d"
+ "85044a91-0441-43c1-a48a-3ffd81b36b96"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184309Z:009b5a84-1947-4086-8e08-f4be5c90c64d"
+ "WESTUS:20210715T151046Z:85044a91-0441-43c1-a48a-3ffd81b36b96"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:43:09 GMT"
+ "Thu, 15 Jul 2021 15:10:46 GMT"
],
"Expires": [
"-1"
@@ -1724,16 +1800,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5VmNHUmhkR1ZmWmpRMk5UaGtaVEE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1744,7 +1823,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01"
+ "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"
@@ -1753,7 +1832,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4da37c57-bed9-4df2-984a-58cc723929f9"
+ "3bfad46f-6f77-4d43-9834-1f2430dded70"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1762,16 +1841,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "9d11b42f-1b4c-42fe-bf83-00b3dc150353"
+ "67bcb272-ed51-4428-8230-8abc14deab28"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184409Z:9d11b42f-1b4c-42fe-bf83-00b3dc150353"
+ "WESTUS:20210715T151147Z:67bcb272-ed51-4428-8230-8abc14deab28"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:44:09 GMT"
+ "Thu, 15 Jul 2021 15:11:46 GMT"
],
"Expires": [
"-1"
@@ -1784,16 +1863,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700/operationresults/ZWFzdHVzOnBzOTcwMF9VcGRhdGVfZjQ2NThkZTA=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMTI2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3MDAvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPVGN3TUY5VmNHUmhkR1ZmWmpRMk5UaGtaVEE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9BY3RfMmRjYzdhMDU=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOUJZM1JmTW1Sall6ZGhNRFU9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1803,11 +1885,17 @@
"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": [
- "d353c14c-7dce-4eea-bb45-89680a654837"
+ "0451edd7-9ea5-4102-a86a-cbe48b8641a7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1816,19 +1904,1837 @@
"11973"
],
"x-ms-correlation-request-id": [
- "0dacb26e-5db1-45e9-8dab-ce85376f1a15"
+ "e609f979-64db-4e65-924f-54c41b6cd9c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151247Z:e609f979-64db-4e65-924f-54c41b6cd9c1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:12:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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/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": [
+ "c42a1bc6-5b94-4bee-ad99-29fa02fdc2d0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c3ddf29-7743-4f0a-8d7c-f2907a30bb06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151348Z:9c3ddf29-7743-4f0a-8d7c-f2907a30bb06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:13:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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/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": [
+ "f74e1f1d-0fe7-4a00-b99c-f342fa408bfd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cdc8475-c753-418b-b994-38c6b3035eeb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151448Z:9cdc8475-c753-418b-b994-38c6b3035eeb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:14:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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/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": [
+ "d234adcc-4aae-4783-b202-46682b17d7c2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c4a0d4a-c9e0-4bae-bcc7-b2ab60053178"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151548Z:0c4a0d4a-c9e0-4bae-bcc7-b2ab60053178"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:15:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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/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": [
+ "1d21a56b-a961-4d9e-a2ee-c731aaec9d7e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-correlation-request-id": [
+ "3381bdf1-bed1-420b-bfd9-13c4687913f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151649Z:3381bdf1-bed1-420b-bfd9-13c4687913f0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:16:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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/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": [
+ "84e9c192-c0d1-4035-81d0-dd0bab901079"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-correlation-request-id": [
+ "2bfb5540-c188-4026-b4c4-6f5c186bb04b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151749Z:2bfb5540-c188-4026-b4c4-6f5c186bb04b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:17:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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/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": [
+ "0a80d091-8fa7-4e0a-8dbf-16a3cd6c747a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-correlation-request-id": [
+ "b14fbd09-55cf-4216-ae45-24156365ddee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151849Z:b14fbd09-55cf-4216-ae45-24156365ddee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:18:49 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b6d01c8a-c1d4-46e4-b545-a75911f2ae8d"
+ ],
+ "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": [
+ "50c3ae9d-6d8c-4c94-a203-a2b078a5be57"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "07618bed-da58-4bed-9761-88006d9772e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T151950Z:07618bed-da58-4bed-9761-88006d9772e1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:19:49 GMT"
+ ],
+ "Content-Length": [
+ "4388"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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\": \"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
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMzgvcHJvdmlkZXJzL01pY3Jvc29mdC5BcGlNYW5hZ2VtZW50L3NlcnZpY2UvcHM4MzcxL29wZXJhdGlvbnJlc3VsdHMvWldGemRIVnpPbkJ6T0RNM01WOVZjR1JoZEdWZk5XUTJOREZoWlRZPT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "16e53865-d55f-4969-acfb-855852ea6d41"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd6e6cc8-2a2c-4456-89fa-f70689520d2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152051Z:dd6e6cc8-2a2c-4456-89fa-f70689520d2f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:20:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "58163bfa-75f1-470f-97c3-5ae5fbb7208c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-correlation-request-id": [
+ "316622c5-0339-492b-be73-8c426d47acd8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152152Z:316622c5-0339-492b-be73-8c426d47acd8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:21:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "144a170a-e41c-4aac-a431-067abaac8197"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d416432-0c89-46e7-a0ce-811c3d8b7b77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152252Z:5d416432-0c89-46e7-a0ce-811c3d8b7b77"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:22:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fed97340-43a1-4587-a012-206e88be5553"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-correlation-request-id": [
+ "051d3ac8-0d06-4347-80d4-ed6d80d79999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152352Z:051d3ac8-0d06-4347-80d4-ed6d80d79999"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:23:52 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72ee023f-7626-4cd5-a67c-717bb8835729"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d37d62e-36b5-41d0-93a7-cb7da7121e65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152453Z:3d37d62e-36b5-41d0-93a7-cb7da7121e65"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:24:52 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dd80ff3e-4409-4ab6-8594-76dfef501264"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-correlation-request-id": [
+ "aeb93a48-10aa-4c86-a3f0-6b26dd3a65f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152553Z:aeb93a48-10aa-4c86-a3f0-6b26dd3a65f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:25:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c69eeec4-0b44-4e75-a289-917f85914958"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5647537-2a58-4e2e-859d-587ea7eb24a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152653Z:b5647537-2a58-4e2e-859d-587ea7eb24a7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:26:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a8c47c51-5cbf-41be-8c3d-7ece9967db75"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fb64974-c3ec-47f3-a40d-1ead1f4f1110"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152754Z:8fb64974-c3ec-47f3-a40d-1ead1f4f1110"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:27:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "188f9ac6-b8b0-4ac9-80a3-034dc4529501"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3d7c76d-9d68-42b5-b1f4-cf85b9b423de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152854Z:c3d7c76d-9d68-42b5-b1f4-cf85b9b423de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:28:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99b9c694-18b7-45e5-b08d-c9533cfbf3bb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-correlation-request-id": [
+ "52f6801a-b319-497f-b9cc-167659644901"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T152954Z:52f6801a-b319-497f-b9cc-167659644901"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:29:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d48a3174-0cf7-4f14-b445-2d695a3359c8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9c00b4a-fffe-4f7f-984a-f6fbbe3794f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153055Z:f9c00b4a-fffe-4f7f-984a-f6fbbe3794f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:30:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eddd6ad7-d61d-4c01-89c2-61bc5713bd5e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3969042-d2ee-4696-a8b1-af6186e2881b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153155Z:c3969042-d2ee-4696-a8b1-af6186e2881b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:31:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f589a23a-f5d2-485d-b450-4369bb061b1a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-correlation-request-id": [
+ "77acf173-d2eb-481b-96fb-1839327eb72a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153255Z:77acf173-d2eb-481b-96fb-1839327eb72a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:32:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "567f1bb0-e825-4fa3-b95b-ffac808fa7e7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-correlation-request-id": [
+ "3272ea4e-1583-4608-b410-a1f66cca9f09"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153356Z:3272ea4e-1583-4608-b410-a1f66cca9f09"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:33:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a9b3a63-74d8-4cf9-bcbb-42a4a6d574ce"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-correlation-request-id": [
+ "3398027d-13d8-4ce1-a1a3-6e1f68fa1efb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153456Z:3398027d-13d8-4ce1-a1a3-6e1f68fa1efb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:34:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "213fc9c3-e307-4db7-a70b-fe841a099dde"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c926c6c-cdde-4ba0-a2b0-90735b766562"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153556Z:0c926c6c-cdde-4ba0-a2b0-90735b766562"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:35:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "28f5565c-9436-40d2-b74b-7c957314eafd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "639877bf-bab6-4da6-98af-15820007bee4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153657Z:639877bf-bab6-4da6-98af-15820007bee4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:36:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a20826be-0306-4642-ba0e-4c5f0bb6f4d8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-correlation-request-id": [
+ "301a2ac2-11c9-4b9d-af60-fa52fa21e2b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153757Z:301a2ac2-11c9-4b9d-af60-fa52fa21e2b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:37:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aa730670-9596-41dd-9761-cd68fe8fa638"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-correlation-request-id": [
+ "16845188-97a0-48d3-a692-59e29e7fde5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153857Z:16845188-97a0-48d3-a692-59e29e7fde5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:38:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "087b5ed1-1344-48ae-b916-83a920aa225a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-correlation-request-id": [
+ "deb85b3d-872f-4379-96f4-bc7804e6a17e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T153958Z:deb85b3d-872f-4379-96f4-bc7804e6a17e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:39:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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/ps38/providers/Microsoft.ApiManagement/service/ps8371/operationresults/ZWFzdHVzOnBzODM3MV9VcGRhdGVfNWQ2NDFhZTY=?api-version=2020-12-01"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7a6ffa1f-3f5c-4c56-b0aa-2853f5fc2b94"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c1933b6-1ebe-400e-8a2a-4724d36a1e67"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T154058Z:7c1933b6-1ebe-400e-8a2a-4724d36a1e67"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 15:40:57 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "30968554-7edc-45ad-84bb-e35e913ec0b2"
+ ],
+ "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": [
+ "2cbeb03e-29d7-4f8e-bb49-362ac7d5c626"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce03b679-7b70-4ff5-a094-ef953b71ea18"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184509Z:0dacb26e-5db1-45e9-8dab-ce85376f1a15"
+ "WESTUS:20210715T154158Z:ce03b679-7b70-4ff5-a094-ef953b71ea18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:45:09 GMT"
+ "Thu, 15 Jul 2021 15:41:58 GMT"
],
"Content-Length": [
- "2603"
+ "3053"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1837,26 +3743,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1267/providers/Microsoft.ApiManagement/service/ps9700\",\r\n \"name\": \"ps9700\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSyw=\",\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\": \"2020-04-20T18:17:56.3447028Z\",\r\n \"gatewayUrl\": \"https://ps9700.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9700-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9700.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9700.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9700.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9700.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9700.azure-api.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 },\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.186.29.74\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.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\": null\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps1267?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMTI2Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps38?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMzg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56910dec-9417-4a53-84c0-4450e6048efa"
+ "161dc4bd-2268-4682-b97e-c1400a71acb7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -1867,7 +3773,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1876,13 +3782,13 @@
"14999"
],
"x-ms-request-id": [
- "fc97de1a-5aef-462d-8325-a425b09e0ac5"
+ "45db37e3-2563-4caf-aa0c-224bd390ceb6"
],
"x-ms-correlation-request-id": [
- "fc97de1a-5aef-462d-8325-a425b09e0ac5"
+ "45db37e3-2563-4caf-aa0c-224bd390ceb6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184511Z:fc97de1a-5aef-462d-8325-a425b09e0ac5"
+ "WESTUS:20210715T154200Z:45db37e3-2563-4caf-aa0c-224bd390ceb6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1891,7 +3797,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:45:11 GMT"
+ "Thu, 15 Jul 2021 15:42:00 GMT"
],
"Expires": [
"-1"
@@ -1904,16 +3810,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -1924,7 +3830,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1933,13 +3839,13 @@
"11999"
],
"x-ms-request-id": [
- "8fda02a7-94ab-4d05-ad4e-fbe710e0b6ad"
+ "a9cb1873-b827-4ecc-9319-b5c42a1eec3a"
],
"x-ms-correlation-request-id": [
- "8fda02a7-94ab-4d05-ad4e-fbe710e0b6ad"
+ "a9cb1873-b827-4ecc-9319-b5c42a1eec3a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184526Z:8fda02a7-94ab-4d05-ad4e-fbe710e0b6ad"
+ "WESTUS:20210715T154215Z:a9cb1873-b827-4ecc-9319-b5c42a1eec3a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1948,7 +3854,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:45:26 GMT"
+ "Thu, 15 Jul 2021 15:42:15 GMT"
],
"Expires": [
"-1"
@@ -1961,16 +3867,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -1981,7 +3887,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -1990,13 +3896,13 @@
"11998"
],
"x-ms-request-id": [
- "4c7f5c87-d6b3-4f22-bff3-11a8b92d0d6d"
+ "3ec046a2-e118-44b9-a7a1-97d77c4d822d"
],
"x-ms-correlation-request-id": [
- "4c7f5c87-d6b3-4f22-bff3-11a8b92d0d6d"
+ "3ec046a2-e118-44b9-a7a1-97d77c4d822d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184542Z:4c7f5c87-d6b3-4f22-bff3-11a8b92d0d6d"
+ "WESTUS:20210715T154231Z:3ec046a2-e118-44b9-a7a1-97d77c4d822d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2005,7 +3911,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:45:41 GMT"
+ "Thu, 15 Jul 2021 15:42:30 GMT"
],
"Expires": [
"-1"
@@ -2018,16 +3924,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2038,7 +3944,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2047,13 +3953,13 @@
"11997"
],
"x-ms-request-id": [
- "5dac3248-21c8-4ba4-a47e-5a230db15def"
+ "3392b35c-005f-469e-acf4-1ef89aa91a87"
],
"x-ms-correlation-request-id": [
- "5dac3248-21c8-4ba4-a47e-5a230db15def"
+ "3392b35c-005f-469e-acf4-1ef89aa91a87"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184557Z:5dac3248-21c8-4ba4-a47e-5a230db15def"
+ "WESTUS:20210715T154246Z:3392b35c-005f-469e-acf4-1ef89aa91a87"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2062,7 +3968,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:45:56 GMT"
+ "Thu, 15 Jul 2021 15:42:46 GMT"
],
"Expires": [
"-1"
@@ -2075,16 +3981,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2095,7 +4001,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2104,13 +4010,13 @@
"11996"
],
"x-ms-request-id": [
- "c0445ec2-993d-4b4f-af94-67ad72a52d79"
+ "215c6998-bb06-4304-94f0-1c2e27d4f85f"
],
"x-ms-correlation-request-id": [
- "c0445ec2-993d-4b4f-af94-67ad72a52d79"
+ "215c6998-bb06-4304-94f0-1c2e27d4f85f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184612Z:c0445ec2-993d-4b4f-af94-67ad72a52d79"
+ "WESTUS:20210715T154301Z:215c6998-bb06-4304-94f0-1c2e27d4f85f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2119,7 +4025,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:46:11 GMT"
+ "Thu, 15 Jul 2021 15:43:01 GMT"
],
"Expires": [
"-1"
@@ -2132,16 +4038,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2152,7 +4058,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2161,13 +4067,13 @@
"11995"
],
"x-ms-request-id": [
- "6d77130f-2e34-40b6-bcc7-e84e658de36e"
+ "f4cc1cde-39f3-45f9-80b8-1d2fa29ec9ff"
],
"x-ms-correlation-request-id": [
- "6d77130f-2e34-40b6-bcc7-e84e658de36e"
+ "f4cc1cde-39f3-45f9-80b8-1d2fa29ec9ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184627Z:6d77130f-2e34-40b6-bcc7-e84e658de36e"
+ "WESTUS:20210715T154316Z:f4cc1cde-39f3-45f9-80b8-1d2fa29ec9ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2176,7 +4082,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:46:27 GMT"
+ "Thu, 15 Jul 2021 15:43:16 GMT"
],
"Expires": [
"-1"
@@ -2189,16 +4095,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2209,7 +4115,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2218,13 +4124,13 @@
"11994"
],
"x-ms-request-id": [
- "87548270-0858-4814-a35e-567276863cb2"
+ "987f8545-59aa-4a1e-8f5c-c20c8b34348f"
],
"x-ms-correlation-request-id": [
- "87548270-0858-4814-a35e-567276863cb2"
+ "987f8545-59aa-4a1e-8f5c-c20c8b34348f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184642Z:87548270-0858-4814-a35e-567276863cb2"
+ "WESTUS:20210715T154331Z:987f8545-59aa-4a1e-8f5c-c20c8b34348f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2233,7 +4139,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:46:42 GMT"
+ "Thu, 15 Jul 2021 15:43:31 GMT"
],
"Expires": [
"-1"
@@ -2246,16 +4152,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2266,7 +4172,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2275,13 +4181,13 @@
"11993"
],
"x-ms-request-id": [
- "bf5fb312-b548-4e4e-93a1-20982d7d5dc4"
+ "6556aa60-c87c-439a-95bc-dfb36d28144b"
],
"x-ms-correlation-request-id": [
- "bf5fb312-b548-4e4e-93a1-20982d7d5dc4"
+ "6556aa60-c87c-439a-95bc-dfb36d28144b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184657Z:bf5fb312-b548-4e4e-93a1-20982d7d5dc4"
+ "WESTUS:20210715T154347Z:6556aa60-c87c-439a-95bc-dfb36d28144b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2290,7 +4196,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:46:57 GMT"
+ "Thu, 15 Jul 2021 15:43:46 GMT"
],
"Expires": [
"-1"
@@ -2303,16 +4209,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2323,7 +4229,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2332,13 +4238,13 @@
"11992"
],
"x-ms-request-id": [
- "d167a6c5-6387-4623-9ba5-1cb75205ed49"
+ "fa547149-638e-49ca-a287-e0d4a7938c68"
],
"x-ms-correlation-request-id": [
- "d167a6c5-6387-4623-9ba5-1cb75205ed49"
+ "fa547149-638e-49ca-a287-e0d4a7938c68"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184713Z:d167a6c5-6387-4623-9ba5-1cb75205ed49"
+ "WESTUS:20210715T154402Z:fa547149-638e-49ca-a287-e0d4a7938c68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2347,7 +4253,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:47:12 GMT"
+ "Thu, 15 Jul 2021 15:44:01 GMT"
],
"Expires": [
"-1"
@@ -2360,16 +4266,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2380,7 +4286,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2389,13 +4295,13 @@
"11991"
],
"x-ms-request-id": [
- "42ed0643-eb03-46a9-8b5d-2eca64b768db"
+ "0b667c19-ba15-46ed-9e47-6bc83129ea8b"
],
"x-ms-correlation-request-id": [
- "42ed0643-eb03-46a9-8b5d-2eca64b768db"
+ "0b667c19-ba15-46ed-9e47-6bc83129ea8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184728Z:42ed0643-eb03-46a9-8b5d-2eca64b768db"
+ "WESTUS:20210715T154417Z:0b667c19-ba15-46ed-9e47-6bc83129ea8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2404,7 +4310,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:47:27 GMT"
+ "Thu, 15 Jul 2021 15:44:16 GMT"
],
"Expires": [
"-1"
@@ -2417,16 +4323,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2437,7 +4343,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2446,13 +4352,13 @@
"11990"
],
"x-ms-request-id": [
- "0c67bd6e-4905-4746-a50c-1a081a72aa77"
+ "a3d99b36-ee0f-4f50-a595-8d161e753e38"
],
"x-ms-correlation-request-id": [
- "0c67bd6e-4905-4746-a50c-1a081a72aa77"
+ "a3d99b36-ee0f-4f50-a595-8d161e753e38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184743Z:0c67bd6e-4905-4746-a50c-1a081a72aa77"
+ "WESTUS:20210715T154432Z:a3d99b36-ee0f-4f50-a595-8d161e753e38"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2461,7 +4367,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:47:42 GMT"
+ "Thu, 15 Jul 2021 15:44:31 GMT"
],
"Expires": [
"-1"
@@ -2474,16 +4380,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2494,7 +4400,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2503,13 +4409,13 @@
"11989"
],
"x-ms-request-id": [
- "30cafb7d-d3c8-4d1b-9734-6e075769ccf4"
+ "77c94167-691a-4221-b7fb-9474b9ed998e"
],
"x-ms-correlation-request-id": [
- "30cafb7d-d3c8-4d1b-9734-6e075769ccf4"
+ "77c94167-691a-4221-b7fb-9474b9ed998e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184758Z:30cafb7d-d3c8-4d1b-9734-6e075769ccf4"
+ "WESTUS:20210715T154447Z:77c94167-691a-4221-b7fb-9474b9ed998e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2518,7 +4424,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:47:57 GMT"
+ "Thu, 15 Jul 2021 15:44:46 GMT"
],
"Expires": [
"-1"
@@ -2531,16 +4437,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2551,7 +4457,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2560,13 +4466,13 @@
"11988"
],
"x-ms-request-id": [
- "10c42b46-00ed-4bca-8e77-e6a762b250c2"
+ "44f24964-f7ef-4943-95ca-d580a2bd3dde"
],
"x-ms-correlation-request-id": [
- "10c42b46-00ed-4bca-8e77-e6a762b250c2"
+ "44f24964-f7ef-4943-95ca-d580a2bd3dde"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184813Z:10c42b46-00ed-4bca-8e77-e6a762b250c2"
+ "WESTUS:20210715T154502Z:44f24964-f7ef-4943-95ca-d580a2bd3dde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2575,7 +4481,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:48:13 GMT"
+ "Thu, 15 Jul 2021 15:45:02 GMT"
],
"Expires": [
"-1"
@@ -2588,16 +4494,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2608,7 +4514,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -2617,13 +4523,13 @@
"11987"
],
"x-ms-request-id": [
- "4bc01da4-9b6d-4002-9956-a7a858cc922b"
+ "b61050ee-fb23-4506-bc57-b8252c43303a"
],
"x-ms-correlation-request-id": [
- "4bc01da4-9b6d-4002-9956-a7a858cc922b"
+ "b61050ee-fb23-4506-bc57-b8252c43303a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184828Z:4bc01da4-9b6d-4002-9956-a7a858cc922b"
+ "WESTUS:20210715T154518Z:b61050ee-fb23-4506-bc57-b8252c43303a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2632,7 +4538,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:48:28 GMT"
+ "Thu, 15 Jul 2021 15:45:17 GMT"
],
"Expires": [
"-1"
@@ -2645,16 +4551,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2668,13 +4574,13 @@
"11986"
],
"x-ms-request-id": [
- "f771b169-c2b8-4126-9b43-98618b4aff55"
+ "9d09b302-4fba-4849-b400-57fb347583a0"
],
"x-ms-correlation-request-id": [
- "f771b169-c2b8-4126-9b43-98618b4aff55"
+ "9d09b302-4fba-4849-b400-57fb347583a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184844Z:f771b169-c2b8-4126-9b43-98618b4aff55"
+ "WESTUS:20210715T154533Z:9d09b302-4fba-4849-b400-57fb347583a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2683,7 +4589,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:48:43 GMT"
+ "Thu, 15 Jul 2021 15:45:32 GMT"
],
"Expires": [
"-1"
@@ -2696,16 +4602,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEyNjctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFeU5qY3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -2719,13 +4625,13 @@
"11985"
],
"x-ms-request-id": [
- "cbff6c41-10b1-4413-a14e-4ec81b7cbd43"
+ "20f8edf4-4473-46cb-ab88-815614eddd36"
],
"x-ms-correlation-request-id": [
- "cbff6c41-10b1-4413-a14e-4ec81b7cbd43"
+ "20f8edf4-4473-46cb-ab88-815614eddd36"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184844Z:cbff6c41-10b1-4413-a14e-4ec81b7cbd43"
+ "WESTUS:20210715T154533Z:20f8edf4-4473-46cb-ab88-815614eddd36"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2734,7 +4640,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:48:43 GMT"
+ "Thu, 15 Jul 2021 15:45:33 GMT"
],
"Expires": [
"-1"
@@ -2749,8 +4655,8 @@
],
"Names": {
"Test-ApiManagementHostnamesCRUD": [
- "ps1267",
- "ps9700"
+ "ps38",
+ "ps8371"
]
},
"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 580fde5b7dd9..57dd481b094e 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": [
- "def1985f-87cb-4a38-93c2-d3768d53da90"
+ "048ae644-ebeb-403d-bfa3-eef0f4f2eca2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -30,13 +30,13 @@
"11998"
],
"x-ms-request-id": [
- "1d35a9cf-498f-4535-8c43-62442efe1eea"
+ "c6157bf1-8e73-4457-81a2-699ba6fd082c"
],
"x-ms-correlation-request-id": [
- "1d35a9cf-498f-4535-8c43-62442efe1eea"
+ "c6157bf1-8e73-4457-81a2-699ba6fd082c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193750Z:1d35a9cf-498f-4535-8c43-62442efe1eea"
+ "WESTUS:20210715T075345Z:c6157bf1-8e73-4457-81a2-699ba6fd082c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -45,7 +45,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:49 GMT"
+ "Thu, 15 Jul 2021 07:53:45 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -54,29 +54,29 @@
"-1"
],
"Content-Length": [
- "2341"
+ "8036"
]
},
- "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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\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 \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"apiVersions\": [\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 \"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 \"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 \"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 \"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 \"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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps7319?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNzMxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8137?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODEzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e053faac-38a4-47df-97f7-e2add8843372"
+ "5d83dac7-05cc-42d3-9894-740773d2a8b0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -96,13 +96,13 @@
"1199"
],
"x-ms-request-id": [
- "a8b1ba86-c468-4f8e-a748-4710b9b2a9ed"
+ "53f6fb7f-f4ba-4e55-bc70-c12ff05f0f3f"
],
"x-ms-correlation-request-id": [
- "a8b1ba86-c468-4f8e-a748-4710b9b2a9ed"
+ "53f6fb7f-f4ba-4e55-bc70-c12ff05f0f3f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193752Z:a8b1ba86-c468-4f8e-a748-4710b9b2a9ed"
+ "WESTUS:20210715T075346Z:53f6fb7f-f4ba-4e55-bc70-c12ff05f0f3f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:51 GMT"
+ "Thu, 15 Jul 2021 07:53:46 GMT"
],
"Content-Length": [
"168"
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319\",\r\n \"name\": \"ps7319\",\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/ps8137\",\r\n \"name\": \"ps8137\",\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/ps7319/providers/Microsoft.ApiManagement/service/ps9793?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"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": [
- "f9b04c30-9730-43aa-8732-002dd25e468d"
+ "bff7ec19-1669-4531-804e-c80bad512e86"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -159,10 +159,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAEs7s=\""
+ "\"AAAAAAAY+Y8=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -171,8 +171,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "717fa93b-4a81-4599-950f-e1a67fd17606",
- "aa43e327-f438-4bd5-89e2-2a1035acb16d"
+ "4ccc5a12-cfeb-48c0-9f5a-b99c9afbaf39",
+ "6bb17daf-a433-41e0-9a96-2ca43a296f69"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -181,19 +181,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "8771190a-4408-4421-8d40-367fd4ea151c"
+ "da20bc7d-8205-4843-ae49-b2566f524379"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193807Z:8771190a-4408-4421-8d40-367fd4ea151c"
+ "WESTUS:20210715T075350Z:da20bc7d-8205-4843-ae49-b2566f524379"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:38:07 GMT"
+ "Thu, 15 Jul 2021 07:53:49 GMT"
],
"Content-Length": [
- "1320"
+ "1401"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -202,20 +202,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs7s=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": null,\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\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -226,7 +229,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -235,7 +238,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7967e5e2-8cc2-4b35-be94-5c1ea49cf05d"
+ "39f8111d-881a-446e-9d2c-299466124be3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -244,16 +247,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7cfdde04-c8c5-48a5-9f9f-133059a67d55"
+ "fb1d23be-7bda-4416-88a5-4cb7e677ef08"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193907Z:7cfdde04-c8c5-48a5-9f9f-133059a67d55"
+ "WESTUS:20210715T075450Z:fb1d23be-7bda-4416-88a5-4cb7e677ef08"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:39:07 GMT"
+ "Thu, 15 Jul 2021 07:54:49 GMT"
],
"Expires": [
"-1"
@@ -266,16 +269,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -286,7 +292,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -295,7 +301,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8da336bb-f4fb-46eb-8116-6e6742efe670"
+ "181ad446-c177-4561-9230-b6a663e2ec41"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -304,16 +310,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1d929620-5949-461d-a7e6-b8e8678d9fdf"
+ "93930d4d-c36c-4d9d-be07-1d4e763c947c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194008Z:1d929620-5949-461d-a7e6-b8e8678d9fdf"
+ "WESTUS:20210715T075550Z:93930d4d-c36c-4d9d-be07-1d4e763c947c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:40:07 GMT"
+ "Thu, 15 Jul 2021 07:55:50 GMT"
],
"Expires": [
"-1"
@@ -326,16 +332,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -346,7 +355,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -355,7 +364,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2201198c-ae8a-4a14-bc56-74a3f55d1856"
+ "1eb8b97b-5a5f-418e-8f82-8f4cf54d85fc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -364,16 +373,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "495c7ac8-2431-4b31-be6f-4e9892b65565"
+ "7e7875d8-cdba-48d4-8e3b-247c978c5cfd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194108Z:495c7ac8-2431-4b31-be6f-4e9892b65565"
+ "WESTUS:20210715T075651Z:7e7875d8-cdba-48d4-8e3b-247c978c5cfd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:41:07 GMT"
+ "Thu, 15 Jul 2021 07:56:50 GMT"
],
"Expires": [
"-1"
@@ -386,16 +395,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -406,7 +418,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -415,7 +427,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2e3d1d9-fdb4-4ce6-accb-3e94376d559b"
+ "11e9c1c6-3df5-4857-9186-a19441666e18"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -424,16 +436,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "7afc228e-ca38-4d2d-aced-1da9e8c885eb"
+ "21e8feda-44af-497e-8f10-8acd3767932a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194208Z:7afc228e-ca38-4d2d-aced-1da9e8c885eb"
+ "WESTUS:20210715T075751Z:21e8feda-44af-497e-8f10-8acd3767932a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:42:08 GMT"
+ "Thu, 15 Jul 2021 07:57:51 GMT"
],
"Expires": [
"-1"
@@ -446,16 +458,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -466,7 +481,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -475,7 +490,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c91f7c02-eeb2-45fa-8d58-68e3a2341e40"
+ "db4b5d1d-c2df-4609-8f94-1b6632273a36"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -484,16 +499,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "5d6d9724-d5d3-441f-98d9-eda63cdd6d57"
+ "f78ce50a-adce-4729-8b15-e7dbc0fc64b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194308Z:5d6d9724-d5d3-441f-98d9-eda63cdd6d57"
+ "WESTUS:20210715T075851Z:f78ce50a-adce-4729-8b15-e7dbc0fc64b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:43:08 GMT"
+ "Thu, 15 Jul 2021 07:58:50 GMT"
],
"Expires": [
"-1"
@@ -506,16 +521,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -526,7 +544,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -535,7 +553,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18060f30-b472-4463-b9a2-1a6afca95417"
+ "17e6353b-4ad8-40c2-a29d-1b2c8a7eea18"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -544,16 +562,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2d23588a-6ab4-41d9-940c-04a67d3d1e4d"
+ "9724e193-dee7-401f-9b17-ea24a2d69fca"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194409Z:2d23588a-6ab4-41d9-940c-04a67d3d1e4d"
+ "WESTUS:20210715T075951Z:9724e193-dee7-401f-9b17-ea24a2d69fca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:44:08 GMT"
+ "Thu, 15 Jul 2021 07:59:51 GMT"
],
"Expires": [
"-1"
@@ -566,16 +584,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -586,7 +607,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -595,7 +616,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ceb9918c-03ae-4618-813e-17bb20ac136a"
+ "a7cb19f5-90c0-4188-9d32-d9e2a189202f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -604,16 +625,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "6fa23eae-506f-4308-863d-0bb4e0c07e3f"
+ "50bd0973-3098-4e93-8820-70abfb8f48eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194509Z:6fa23eae-506f-4308-863d-0bb4e0c07e3f"
+ "WESTUS:20210715T080052Z:50bd0973-3098-4e93-8820-70abfb8f48eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:45:08 GMT"
+ "Thu, 15 Jul 2021 08:00:51 GMT"
],
"Expires": [
"-1"
@@ -626,16 +647,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -646,7 +670,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -655,7 +679,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ae4f3418-e695-4b76-872f-4a66a92af6c3"
+ "53744f3c-621d-4d11-863e-0010e76db78e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -664,16 +688,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "410d793c-8c51-4308-adc7-2a179c94a84c"
+ "69132f88-495f-4243-8959-e34b4a94a5e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194609Z:410d793c-8c51-4308-adc7-2a179c94a84c"
+ "WESTUS:20210715T080152Z:69132f88-495f-4243-8959-e34b4a94a5e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:46:09 GMT"
+ "Thu, 15 Jul 2021 08:01:52 GMT"
],
"Expires": [
"-1"
@@ -686,16 +710,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -706,7 +733,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -715,7 +742,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "279df486-d562-4abc-a418-04eb8d9c5e78"
+ "41365239-f127-42c0-96df-7e860a049276"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -724,16 +751,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "446a0a8c-148e-40d3-99b1-d9478f8184f6"
+ "143a97a7-a9cb-4b17-b91a-a95e6d6d764a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194710Z:446a0a8c-148e-40d3-99b1-d9478f8184f6"
+ "WESTUS:20210715T080252Z:143a97a7-a9cb-4b17-b91a-a95e6d6d764a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:47:09 GMT"
+ "Thu, 15 Jul 2021 08:02:52 GMT"
],
"Expires": [
"-1"
@@ -746,16 +773,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -766,7 +796,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -775,7 +805,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f182e6e3-e516-4a80-841c-0c8b394d87a8"
+ "5cdd06bb-e280-4385-84cc-f087403a851b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -784,16 +814,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "9a310807-1f1d-4170-bd49-61ecd7ced8cd"
+ "315f3f5b-b8f4-411b-bafe-f826e06466a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194810Z:9a310807-1f1d-4170-bd49-61ecd7ced8cd"
+ "WESTUS:20210715T080352Z:315f3f5b-b8f4-411b-bafe-f826e06466a1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:48:09 GMT"
+ "Thu, 15 Jul 2021 08:03:51 GMT"
],
"Expires": [
"-1"
@@ -806,16 +836,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -826,7 +859,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -835,7 +868,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2cbc844b-4344-432e-93db-f490af6581f0"
+ "c3fdcea6-d1d3-455f-b716-3097825fc535"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -844,16 +877,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "c7217c9c-4214-4fb7-baff-2569de2498df"
+ "ca982382-790c-495a-ab53-50352328271d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T194910Z:c7217c9c-4214-4fb7-baff-2569de2498df"
+ "WESTUS:20210715T080453Z:ca982382-790c-495a-ab53-50352328271d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:49:10 GMT"
+ "Thu, 15 Jul 2021 08:04:52 GMT"
],
"Expires": [
"-1"
@@ -866,16 +899,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -886,7 +922,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -895,7 +931,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d79e520e-16c1-4967-b19d-dbdc2a7bf7bb"
+ "61c77b66-7cc4-4d4e-bffa-04b5616568af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -904,16 +940,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "b4928e72-9c6d-434c-9329-9e75e37a3a4a"
+ "20bf0fe8-5432-4c1b-bee0-955a9c46a370"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195010Z:b4928e72-9c6d-434c-9329-9e75e37a3a4a"
+ "WESTUS:20210715T080553Z:20bf0fe8-5432-4c1b-bee0-955a9c46a370"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:50:10 GMT"
+ "Thu, 15 Jul 2021 08:05:53 GMT"
],
"Expires": [
"-1"
@@ -926,16 +962,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -946,7 +985,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -955,7 +994,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6e73a305-ea46-41cd-a92e-f4927adbb895"
+ "cd5bed76-6b83-474c-bb56-bac0d31d5022"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -964,16 +1003,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "01cebfd2-7966-4d5b-87ef-52707e01d2cd"
+ "1dc4f260-5d9d-411f-aefc-26cb09355b42"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195111Z:01cebfd2-7966-4d5b-87ef-52707e01d2cd"
+ "WESTUS:20210715T080653Z:1dc4f260-5d9d-411f-aefc-26cb09355b42"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:51:10 GMT"
+ "Thu, 15 Jul 2021 08:06:53 GMT"
],
"Expires": [
"-1"
@@ -986,16 +1025,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1006,7 +1048,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1015,7 +1057,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "91fa5522-228e-4845-b50e-d5390dc5e1f9"
+ "890e8013-42f1-48a0-84f0-ec074117963f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1024,16 +1066,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "dd3cb3f6-a5f8-4e46-a333-c8dab4c2ca1f"
+ "64801b79-2d14-46a5-b786-21b64574e36c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195211Z:dd3cb3f6-a5f8-4e46-a333-c8dab4c2ca1f"
+ "WESTUS:20210715T080753Z:64801b79-2d14-46a5-b786-21b64574e36c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:52:10 GMT"
+ "Thu, 15 Jul 2021 08:07:52 GMT"
],
"Expires": [
"-1"
@@ -1046,16 +1088,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1066,7 +1111,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1075,7 +1120,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e4ce7b96-6620-403b-8907-a40f358038b6"
+ "f0c59df7-eb13-4823-a879-b12ff7bf8fe5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1084,16 +1129,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "e4c4621d-ea4e-4367-9625-343a8e6f8c3c"
+ "cb2b4b69-b9c1-435b-8a0f-cc66565fe5bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195311Z:e4c4621d-ea4e-4367-9625-343a8e6f8c3c"
+ "WESTUS:20210715T080854Z:cb2b4b69-b9c1-435b-8a0f-cc66565fe5bb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:53:10 GMT"
+ "Thu, 15 Jul 2021 08:08:53 GMT"
],
"Expires": [
"-1"
@@ -1106,16 +1151,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1126,7 +1174,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1135,7 +1183,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "32fed18a-2e93-4d77-9f38-b66a2e009fe9"
+ "65d6089b-00e5-4c13-8878-48b93010b8e2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1144,16 +1192,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "7ddde7f3-9a98-40f0-bfe9-04752f0f930b"
+ "8f388f87-1e8b-4451-a2c8-12b8ac3f8042"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195411Z:7ddde7f3-9a98-40f0-bfe9-04752f0f930b"
+ "WESTUS:20210715T080954Z:8f388f87-1e8b-4451-a2c8-12b8ac3f8042"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:54:11 GMT"
+ "Thu, 15 Jul 2021 08:09:53 GMT"
],
"Expires": [
"-1"
@@ -1166,16 +1214,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1186,7 +1237,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1195,7 +1246,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ce2cc5da-02d8-4c20-adbd-6051aec84ed9"
+ "ac53a7a6-9fd1-41fe-b945-b7fc70e24ce7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1204,16 +1255,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "08a49d79-d7bd-45a8-96d6-784413421650"
+ "deafa484-aa4f-4acb-86ab-083501bdc196"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195512Z:08a49d79-d7bd-45a8-96d6-784413421650"
+ "WESTUS:20210715T081054Z:deafa484-aa4f-4acb-86ab-083501bdc196"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:55:12 GMT"
+ "Thu, 15 Jul 2021 08:10:54 GMT"
],
"Expires": [
"-1"
@@ -1226,16 +1277,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1246,7 +1300,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1255,7 +1309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "72687f8d-9753-4d16-8790-aa5e5e1f54d7"
+ "da74ac2f-4c2e-475d-921a-51b022ee5fbf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1264,16 +1318,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "ff52dc7a-0181-4e5e-a8ec-d7f2feed8a73"
+ "2d8c3065-fb29-4283-afdc-1703fdf3f4ff"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195612Z:ff52dc7a-0181-4e5e-a8ec-d7f2feed8a73"
+ "WESTUS:20210715T081155Z:2d8c3065-fb29-4283-afdc-1703fdf3f4ff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:56:11 GMT"
+ "Thu, 15 Jul 2021 08:11:54 GMT"
],
"Expires": [
"-1"
@@ -1286,16 +1340,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1306,7 +1363,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1315,7 +1372,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7539a9f0-7fe4-4b8a-8bf3-02348cbc89e7"
+ "1f354c9b-a0a8-44be-af35-c1b0e7501975"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1324,16 +1381,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "93bb9d11-b902-4697-b32d-0f09166edfc7"
+ "b4bfff98-92ad-4877-85b6-5c6050bbc84d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195712Z:93bb9d11-b902-4697-b32d-0f09166edfc7"
+ "WESTUS:20210715T081255Z:b4bfff98-92ad-4877-85b6-5c6050bbc84d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:57:11 GMT"
+ "Thu, 15 Jul 2021 08:12:55 GMT"
],
"Expires": [
"-1"
@@ -1346,16 +1403,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1366,7 +1426,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1375,7 +1435,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e2b5db01-0765-4d55-87c0-a0dfa578b004"
+ "2441ab21-ccf2-4ae0-a839-5ec4175a0976"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1384,16 +1444,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "39295d29-7039-4bb6-bab9-f8c6a96831a1"
+ "ec65049a-9d62-42a2-b868-bb8cd4c9fc55"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195812Z:39295d29-7039-4bb6-bab9-f8c6a96831a1"
+ "WESTUS:20210715T081355Z:ec65049a-9d62-42a2-b868-bb8cd4c9fc55"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:58:12 GMT"
+ "Thu, 15 Jul 2021 08:13:54 GMT"
],
"Expires": [
"-1"
@@ -1406,16 +1466,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1426,7 +1489,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1435,7 +1498,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b789d7f6-9b62-421b-bc3c-e1dd5747173c"
+ "6b57a89f-e018-4111-be6e-86c9fe3b40af"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1444,16 +1507,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "24ee9f21-6146-4e74-bb4b-63a81b878e1b"
+ "bfc5d15f-4e1d-477b-b9c8-a7d8988e4d30"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T195912Z:24ee9f21-6146-4e74-bb4b-63a81b878e1b"
+ "WESTUS:20210715T081455Z:bfc5d15f-4e1d-477b-b9c8-a7d8988e4d30"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:59:12 GMT"
+ "Thu, 15 Jul 2021 08:14:55 GMT"
],
"Expires": [
"-1"
@@ -1466,16 +1529,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1486,7 +1552,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1495,7 +1561,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b7a3af71-d43b-46a8-9443-80df3d357c2b"
+ "89cb232b-e3b3-4755-be7e-b6f3cb8e5905"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1504,16 +1570,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "95796d82-3cd0-428e-948b-fe9df00e88b8"
+ "677ee2ff-c10c-455a-b109-1dbf8410babd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200013Z:95796d82-3cd0-428e-948b-fe9df00e88b8"
+ "WESTUS:20210715T081556Z:677ee2ff-c10c-455a-b109-1dbf8410babd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:00:12 GMT"
+ "Thu, 15 Jul 2021 08:15:55 GMT"
],
"Expires": [
"-1"
@@ -1526,16 +1592,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1546,7 +1615,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1555,7 +1624,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "97369e7c-04c7-48fb-9b81-350f3ec803e3"
+ "757d298b-5990-4365-8baf-77bd79f2ba0a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1564,16 +1633,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "60072ada-9cde-43ea-9cc9-cbbc39950d2c"
+ "7e0b97c0-e3c9-4870-8690-0d03f013d260"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200113Z:60072ada-9cde-43ea-9cc9-cbbc39950d2c"
+ "WESTUS:20210715T081656Z:7e0b97c0-e3c9-4870-8690-0d03f013d260"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:01:13 GMT"
+ "Thu, 15 Jul 2021 08:16:56 GMT"
],
"Expires": [
"-1"
@@ -1586,16 +1655,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1606,7 +1678,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1615,7 +1687,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "22544f44-73a3-4e8f-bdee-649b97bc49cf"
+ "261308b9-8f7b-4cfd-8d6c-790a5ae53f13"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1624,16 +1696,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "37acd3dc-a6d0-4734-81ec-fc50923f453d"
+ "9bf42d3a-adc4-4472-a8dd-34528ff3a1e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200213Z:37acd3dc-a6d0-4734-81ec-fc50923f453d"
+ "WESTUS:20210715T081756Z:9bf42d3a-adc4-4472-a8dd-34528ff3a1e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:02:13 GMT"
+ "Thu, 15 Jul 2021 08:17:55 GMT"
],
"Expires": [
"-1"
@@ -1646,16 +1718,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1666,7 +1741,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1675,7 +1750,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c9142054-0a5e-425e-8997-1c5857b995ad"
+ "1dee446f-a844-4e0e-9b7b-745cff18dd6e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1684,16 +1759,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "12c92ae8-2402-4411-90d8-ef128254891d"
+ "1e490413-1cdf-45c0-850e-ca1c808dc19b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200314Z:12c92ae8-2402-4411-90d8-ef128254891d"
+ "WESTUS:20210715T081856Z:1e490413-1cdf-45c0-850e-ca1c808dc19b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:03:14 GMT"
+ "Thu, 15 Jul 2021 08:18:56 GMT"
],
"Expires": [
"-1"
@@ -1706,16 +1781,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1726,7 +1804,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1735,7 +1813,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a186e453-ead0-4627-b713-4eaa01580e9e"
+ "e9316756-2281-4586-a801-40cabfbd4b0d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1744,16 +1822,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "123064fe-da46-42d2-b510-a96822f93b5b"
+ "755d1d45-beaf-4669-b458-69aafe17dde8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200414Z:123064fe-da46-42d2-b510-a96822f93b5b"
+ "WESTUS:20210715T081957Z:755d1d45-beaf-4669-b458-69aafe17dde8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:04:13 GMT"
+ "Thu, 15 Jul 2021 08:19:56 GMT"
],
"Expires": [
"-1"
@@ -1766,16 +1844,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1786,7 +1867,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1795,7 +1876,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f87a1c8c-8562-401a-95d9-5cb61a44e640"
+ "9f97f701-ac2e-4738-a629-d2ea82de466c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1804,16 +1885,16 @@
"11973"
],
"x-ms-correlation-request-id": [
- "f63c5035-e9e9-47d1-9e2b-596ce8cd2c8e"
+ "97ebef44-6ef7-401c-b3c0-eb16c3f3984e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200514Z:f63c5035-e9e9-47d1-9e2b-596ce8cd2c8e"
+ "WESTUS:20210715T082057Z:97ebef44-6ef7-401c-b3c0-eb16c3f3984e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:05:14 GMT"
+ "Thu, 15 Jul 2021 08:20:57 GMT"
],
"Expires": [
"-1"
@@ -1826,16 +1907,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1846,7 +1930,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1855,7 +1939,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1360afa7-3b0b-49f2-86bf-b196ce3bda5b"
+ "1c1e6b94-201e-4b3d-b588-3023ac799946"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1864,16 +1948,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "74d819a2-f978-4fc9-9139-aaad88e2464d"
+ "e6761bf7-2e2d-46fd-b7e9-1fd53f99cc56"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200614Z:74d819a2-f978-4fc9-9139-aaad88e2464d"
+ "WESTUS:20210715T082157Z:e6761bf7-2e2d-46fd-b7e9-1fd53f99cc56"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:06:14 GMT"
+ "Thu, 15 Jul 2021 08:21:57 GMT"
],
"Expires": [
"-1"
@@ -1886,16 +1970,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1906,7 +1993,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1915,7 +2002,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ba0e95b9-9200-42ab-a901-5bfe5a10ccb6"
+ "dc57301b-fefd-4eed-8001-3e86545e5d9c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1924,16 +2011,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "18c1d836-5393-456a-8d65-06fb53112713"
+ "ac98524a-e3d9-4f9a-920d-f60782bb92c1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200715Z:18c1d836-5393-456a-8d65-06fb53112713"
+ "WESTUS:20210715T082258Z:ac98524a-e3d9-4f9a-920d-f60782bb92c1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:07:15 GMT"
+ "Thu, 15 Jul 2021 08:22:57 GMT"
],
"Expires": [
"-1"
@@ -1946,16 +2033,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1966,7 +2056,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -1975,7 +2065,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6021b91a-d262-453c-8a99-a7332c4793b8"
+ "94da273f-2883-48e8-a8ad-a4da571ce5ba"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1984,16 +2074,16 @@
"11970"
],
"x-ms-correlation-request-id": [
- "c4313fd3-bfe2-4a58-98e9-a0803083a3f2"
+ "e770257e-176b-4e81-98cc-41be3f8005a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200815Z:c4313fd3-bfe2-4a58-98e9-a0803083a3f2"
+ "WESTUS:20210715T082358Z:e770257e-176b-4e81-98cc-41be3f8005a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:08:14 GMT"
+ "Thu, 15 Jul 2021 08:23:57 GMT"
],
"Expires": [
"-1"
@@ -2006,16 +2096,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2026,7 +2119,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -2035,7 +2128,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "63ec48f4-23da-4991-a606-50f755f5838f"
+ "909bfcd7-469b-40a0-a649-00226c46133e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2044,16 +2137,16 @@
"11969"
],
"x-ms-correlation-request-id": [
- "0e5a40f9-1a09-47d8-92a8-ce38b4882778"
+ "9ad0adc7-2ec5-4137-8d6b-02e3e6874913"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T200915Z:0e5a40f9-1a09-47d8-92a8-ce38b4882778"
+ "WESTUS:20210715T082458Z:9ad0adc7-2ec5-4137-8d6b-02e3e6874913"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:09:15 GMT"
+ "Thu, 15 Jul 2021 08:24:58 GMT"
],
"Expires": [
"-1"
@@ -2066,16 +2159,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2086,7 +2182,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -2095,7 +2191,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fc96637f-0e89-42b3-9b7d-60a36227daaf"
+ "a3c3db9b-262d-4877-8680-f60b12134afe"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2104,16 +2200,16 @@
"11968"
],
"x-ms-correlation-request-id": [
- "198d0f13-1130-42df-b905-aa9a942d9ff5"
+ "953d9b5c-a894-41d7-8fea-116dde049cd6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201016Z:198d0f13-1130-42df-b905-aa9a942d9ff5"
+ "WESTUS:20210715T082558Z:953d9b5c-a894-41d7-8fea-116dde049cd6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:10:15 GMT"
+ "Thu, 15 Jul 2021 08:25:58 GMT"
],
"Expires": [
"-1"
@@ -2126,16 +2222,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2146,7 +2245,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01"
+ "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"
@@ -2155,7 +2254,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3c65c33-70d5-44f7-8515-0d01716f3a7e"
+ "6fc1de95-4240-41e6-a9d0-caa53c3bc933"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2164,16 +2263,16 @@
"11967"
],
"x-ms-correlation-request-id": [
- "7772821b-8305-4353-bb3c-ad7a45dd89c3"
+ "1ea1a1e4-7742-4811-91c9-06b092329fda"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201116Z:7772821b-8305-4353-bb3c-ad7a45dd89c3"
+ "WESTUS:20210715T082659Z:1ea1a1e4-7742-4811-91c9-06b092329fda"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:11:16 GMT"
+ "Thu, 15 Jul 2021 08:26:59 GMT"
],
"Expires": [
"-1"
@@ -2186,16 +2285,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19BY3RfYjAwNWRhOWI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOUJZM1JmWWpBd05XUmhPV0k9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2205,11 +2307,17 @@
"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": [
- "aed009a7-9694-4221-8cb8-789e2619883d"
+ "8ed8e3c7-15fd-4e8a-8458-4c3ac87f9d9f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2218,47 +2326,41 @@
"11966"
],
"x-ms-correlation-request-id": [
- "cf334dee-30cc-4217-9629-8ac9a82e7d58"
+ "f58c4958-f06f-47a1-aed2-33900af10dfb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201216Z:cf334dee-30cc-4217-9629-8ac9a82e7d58"
+ "WESTUS:20210715T082759Z:f58c4958-f06f-47a1-aed2-33900af10dfb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:12:15 GMT"
- ],
- "Content-Length": [
- "2055"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 08:27:58 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs/8=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": \"https://ps9793.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9793-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9793.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9793.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9793.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9793.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9793.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.165.31.150\"\r\n ],\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}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/getssotoken?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
- "RequestMethod": "POST",
+ "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": [
- "1d583c09-a1cd-43ac-98ce-e4291eef99e1"
- ],
- "Accept-Language": [
- "en-US"
+ "bff7ec19-1669-4531-804e-c80bad512e86"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2268,60 +2370,60 @@
"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": [
- "32208d2a-14ae-437e-ac4b-d467c008ceb9"
+ "46b0cd2e-7cdb-4d3d-b1a0-b5fc55fa859d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
],
"x-ms-correlation-request-id": [
- "7f9ee423-c016-4f6b-a806-709b25556bdd"
+ "b323c8b2-6df9-4d0b-9945-2ef1c81e9c79"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201216Z:7f9ee423-c016-4f6b-a806-709b25556bdd"
+ "WESTUS:20210715T082859Z:b323c8b2-6df9-4d0b-9945-2ef1c81e9c79"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:12:16 GMT"
- ],
- "Content-Length": [
- "192"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 08:28:58 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"redirectUri\": \"https://ps9793.portal.azure-api.net:443/signin-sso?token=1%26202004202017%26ywMS9HgGNK4Znu9KvASuqB9i5F2Aks9iFRZIF7f70OBs2W52JH%2fCRuJtprqQdmIMdtBJM263%2f1C%2b77lO3lxdqA%3d%3d\"\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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": [
- "febd1727-c477-4266-aff8-89cd0f574dce"
- ],
- "Accept-Language": [
- "en-US"
+ "bff7ec19-1669-4531-804e-c80bad512e86"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2331,60 +2433,60 @@
"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": [
- "b35dc0be-f0ab-4a91-97d1-2d9ec43fbc46"
+ "10521dff-c83a-4a80-9359-a0ef78602986"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11964"
],
"x-ms-correlation-request-id": [
- "e06f871c-043e-4b17-bb3a-1ede0d9a85ab"
+ "bcf4cdef-f099-4e3d-8d54-ade176f83001"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201217Z:e06f871c-043e-4b17-bb3a-1ede0d9a85ab"
+ "WESTUS:20210715T082959Z:bcf4cdef-f099-4e3d-8d54-ade176f83001"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:12:16 GMT"
- ],
- "Content-Length": [
- "2067"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 08:29:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs/8=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": \"https://ps9793.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9793-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9793.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9793.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9793.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9793.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9793.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.165.31.150\"\r\n ],\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 }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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": [
- "d72a18ee-8306-49b2-8d79-2cc3f13f1527"
- ],
- "Accept-Language": [
- "en-US"
+ "bff7ec19-1669-4531-804e-c80bad512e86"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2394,61 +2496,60 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "6007ea0f-8e51-4dd1-a8cd-cff5ca1cafbf",
- "af005782-c40f-4189-ae3d-64e82c887298"
+ "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"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "Retry-After": [
+ "60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d552e68-181e-4ff4-995d-441a396c93d3"
+ "d27c7304-b31d-4dc4-a81a-499c1e17bbd7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
],
"x-ms-correlation-request-id": [
- "1d552e68-181e-4ff4-995d-441a396c93d3"
+ "917daac2-f6f1-472e-98bd-e44150cbdac9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205739Z:1d552e68-181e-4ff4-995d-441a396c93d3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20210715T083100Z:917daac2-f6f1-472e-98bd-e44150cbdac9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:57:38 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 08:30:59 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "5849"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621\",\r\n \"name\": \"ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtEE=\",\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\": \"2020-04-20T20:12:18.6916233Z\",\r\n \"gatewayUrl\": \"https://ps6621.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6621-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6621.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6621.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6621.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6621.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6621.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.149.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\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs/8=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": \"https://ps9793.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9793-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9793.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9793.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9793.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9793.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9793.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.165.31.150\"\r\n ],\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456\",\r\n \"name\": \"ps3456\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAQc44=\",\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\": \"2020-04-20T20:56:34.0401968Z\",\r\n \"gatewayUrl\": \"https://ps3456.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\": \"ps3456.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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 }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "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": [
- "bacf644c-8c41-4af5-ba23-fa12e1db7483"
- ],
- "Accept-Language": [
- "en-US"
+ "bff7ec19-1669-4531-804e-c80bad512e86"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2458,63 +2559,60 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
+ "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": [
- "772f0c17-5a40-4737-b2fa-19937fe54b7d"
+ "265c4708-d7e6-49a4-98c4-7dc71b788429"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
],
"x-ms-correlation-request-id": [
- "772f0c17-5a40-4737-b2fa-19937fe54b7d"
+ "beadcfd4-75ed-401a-ae65-b1343ee4d04c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210208Z:772f0c17-5a40-4737-b2fa-19937fe54b7d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20210715T083200Z:beadcfd4-75ed-401a-ae65-b1343ee4d04c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:02:08 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 08:32:00 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "12"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
- "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}",
+ "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": [
- "6488ccc0-c2ae-495d-878f-bbc913b69542"
- ],
- "Accept-Language": [
- "en-US"
+ "bff7ec19-1669-4531-804e-c80bad512e86"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "253"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2524,11 +2622,8 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAEtAE=\""
- ],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2537,51 +2632,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a20bdade-8910-4d10-a9f2-e63cd047dad9",
- "9a2962c5-e758-45e1-a75d-eeeff1ab021e"
+ "dfebc54a-8758-444c-a840-4ebcf9ee20ef"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
],
"x-ms-correlation-request-id": [
- "ac8206b8-8a03-46f6-98e2-a0a5dc3a104e"
+ "426afb4e-aa9e-4424-afd0-e54f2739dbb1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201219Z:ac8206b8-8a03-46f6-98e2-a0a5dc3a104e"
+ "WESTUS:20210715T083300Z:426afb4e-aa9e-4424-afd0-e54f2739dbb1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:12:18 GMT"
- ],
- "Content-Length": [
- "1170"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 08:32:59 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621\",\r\n \"name\": \"ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtAE=\",\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\": \"2020-04-20T20:12:18.6916233Z\",\r\n \"gatewayUrl\": null,\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\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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}",
- "StatusCode": 201
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2592,7 +2686,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2601,25 +2695,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea3c6582-04a5-4764-a3b3-139c3f19b147"
+ "86a537d2-db6d-4a2a-8592-e3096557aca4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11960"
],
"x-ms-correlation-request-id": [
- "4416969e-0f73-4249-aa89-d6438f19e907"
+ "0fb87459-cc73-4f95-8cc0-34f6be5ad782"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201320Z:4416969e-0f73-4249-aa89-d6438f19e907"
+ "WESTUS:20210715T083401Z:0fb87459-cc73-4f95-8cc0-34f6be5ad782"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:13:19 GMT"
+ "Thu, 15 Jul 2021 08:34:00 GMT"
],
"Expires": [
"-1"
@@ -2632,16 +2726,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2652,7 +2749,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2661,25 +2758,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2e06c212-4ea7-41a9-82af-13be357e0877"
+ "1f5ae404-5ce2-4d81-8afe-edf9203d7ef8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11959"
],
"x-ms-correlation-request-id": [
- "a9545be5-5b46-4fef-af7e-a5bb58ade869"
+ "0f6dd0dd-5952-4902-84f2-0d3f69a5a017"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201420Z:a9545be5-5b46-4fef-af7e-a5bb58ade869"
+ "WESTUS:20210715T083501Z:0f6dd0dd-5952-4902-84f2-0d3f69a5a017"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:14:20 GMT"
+ "Thu, 15 Jul 2021 08:35:00 GMT"
],
"Expires": [
"-1"
@@ -2692,16 +2789,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2712,7 +2812,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2721,25 +2821,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73de307a-706f-450a-a171-ba6bb326d55c"
+ "b5c18882-eeff-4da0-a9a9-4a4a6afb65f2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11958"
],
"x-ms-correlation-request-id": [
- "f206ef8f-97af-4a20-b9c7-99ac24fedd52"
+ "a67b6d54-8e90-4e29-b909-35bb432c61e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201520Z:f206ef8f-97af-4a20-b9c7-99ac24fedd52"
+ "WESTUS:20210715T083601Z:a67b6d54-8e90-4e29-b909-35bb432c61e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:15:19 GMT"
+ "Thu, 15 Jul 2021 08:36:01 GMT"
],
"Expires": [
"-1"
@@ -2752,16 +2852,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2772,7 +2875,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2781,25 +2884,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "68ab81c4-86f7-429a-a345-0d72802e6167"
+ "cd55aa2e-f6e2-46f3-9d53-f084cefa8c7f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
+ "11957"
],
"x-ms-correlation-request-id": [
- "53a6ff31-108e-4d21-8354-f3365fe17bca"
+ "98047878-47c8-40a3-8047-6edd022eb74a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201620Z:53a6ff31-108e-4d21-8354-f3365fe17bca"
+ "WESTUS:20210715T083701Z:98047878-47c8-40a3-8047-6edd022eb74a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:16:20 GMT"
+ "Thu, 15 Jul 2021 08:37:01 GMT"
],
"Expires": [
"-1"
@@ -2812,16 +2915,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2832,7 +2938,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2841,25 +2947,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f1177862-0b9a-4fba-91fc-52e4fc80ae79"
+ "cce5f1a1-65b2-4657-81a6-12f776dc4319"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
+ "11956"
],
"x-ms-correlation-request-id": [
- "afe2b3ec-5e73-454c-a215-e2f356ba92fa"
+ "f8535fb9-2aea-4631-81d9-98ed8abacb1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201721Z:afe2b3ec-5e73-454c-a215-e2f356ba92fa"
+ "WESTUS:20210715T083802Z:f8535fb9-2aea-4631-81d9-98ed8abacb1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:17:21 GMT"
+ "Thu, 15 Jul 2021 08:38:02 GMT"
],
"Expires": [
"-1"
@@ -2872,16 +2978,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2892,7 +3001,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2901,25 +3010,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34bb40e0-6a36-417f-a011-2c249f67dd0a"
+ "995c683e-ca05-4405-9c96-af51faa0b864"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
+ "11955"
],
"x-ms-correlation-request-id": [
- "b130df14-f3ea-4784-a312-53c702f20c91"
+ "15f65c7a-e427-4d63-98a7-c8818d95df12"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201821Z:b130df14-f3ea-4784-a312-53c702f20c91"
+ "WESTUS:20210715T083902Z:15f65c7a-e427-4d63-98a7-c8818d95df12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:18:20 GMT"
+ "Thu, 15 Jul 2021 08:39:01 GMT"
],
"Expires": [
"-1"
@@ -2932,16 +3041,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2952,7 +3064,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -2961,25 +3073,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "507c7a01-a232-419f-9253-2ec7fc3674a6"
+ "79eaf542-7d3d-497f-8308-0abc099997ce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
+ "11954"
],
"x-ms-correlation-request-id": [
- "351ba2bd-6096-49de-8365-064102efa37e"
+ "a8900955-2301-4db7-b68b-1e4817079aec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T201921Z:351ba2bd-6096-49de-8365-064102efa37e"
+ "WESTUS:20210715T084002Z:a8900955-2301-4db7-b68b-1e4817079aec"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:19:21 GMT"
+ "Thu, 15 Jul 2021 08:40:02 GMT"
],
"Expires": [
"-1"
@@ -2992,16 +3104,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3012,7 +3127,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3021,25 +3136,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cc692916-ea94-41ff-9fb3-54cb8021b172"
+ "b3bd0455-2865-4c71-a741-64edf2c8a315"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "11953"
],
"x-ms-correlation-request-id": [
- "bf999786-f445-4c51-be04-0b592f94dcb4"
+ "43260c4b-6911-4783-a280-0c2fc6880859"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202021Z:bf999786-f445-4c51-be04-0b592f94dcb4"
+ "WESTUS:20210715T084103Z:43260c4b-6911-4783-a280-0c2fc6880859"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:20:20 GMT"
+ "Thu, 15 Jul 2021 08:41:02 GMT"
],
"Expires": [
"-1"
@@ -3052,16 +3167,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3072,7 +3190,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3081,25 +3199,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df4817b7-fe74-4f2c-ada3-a1a62c4ce379"
+ "3169b455-49dc-4fdb-bdad-140813dca7c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11954"
+ "11952"
],
"x-ms-correlation-request-id": [
- "6e3ea1bc-0d11-42e7-bd3c-20159e9eb5f1"
+ "1beaacfa-417c-4bb8-a2b8-769b940ea03c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202121Z:6e3ea1bc-0d11-42e7-bd3c-20159e9eb5f1"
+ "WESTUS:20210715T084203Z:1beaacfa-417c-4bb8-a2b8-769b940ea03c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:21:21 GMT"
+ "Thu, 15 Jul 2021 08:42:03 GMT"
],
"Expires": [
"-1"
@@ -3112,16 +3230,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3132,7 +3253,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3141,25 +3262,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dc3ae836-e84b-4cd9-a869-2aa8add2e15f"
+ "d592dfac-6290-4a1e-be05-fb0625ce8cf3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11953"
+ "11951"
],
"x-ms-correlation-request-id": [
- "f4b0f6d0-7f1a-4aa7-b988-a613e7b0559d"
+ "0052fbdb-e02e-4bca-80f5-15c310b7766d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202222Z:f4b0f6d0-7f1a-4aa7-b988-a613e7b0559d"
+ "WESTUS:20210715T084303Z:0052fbdb-e02e-4bca-80f5-15c310b7766d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:22:22 GMT"
+ "Thu, 15 Jul 2021 08:43:02 GMT"
],
"Expires": [
"-1"
@@ -3172,16 +3293,2931 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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": [
+ "5ac6cede-4421-4787-9857-ac7fe549888a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-correlation-request-id": [
+ "42bfb489-a23e-461c-8a30-6f308ec48267"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T084404Z:42bfb489-a23e-461c-8a30-6f308ec48267"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:44:03 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": [
+ "b9c30eac-13c7-4f8a-a230-a0c90eae77cc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3b48c20-9e9e-4b90-8707-63cb83ecc0d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T084504Z:e3b48c20-9e9e-4b90-8707-63cb83ecc0d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:45:03 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": [
+ "115db234-1ab0-42d1-b980-13de495d3bc0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4103b5a-a308-4d5b-bb1d-a0ea795f297f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T084604Z:e4103b5a-a308-4d5b-bb1d-a0ea795f297f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:46:04 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": [
+ "8b1f182f-45d1-4d24-a724-b8aa139d5206"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d89cee8-db61-4e5a-bba2-4c4b2dd79606"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T084704Z:8d89cee8-db61-4e5a-bba2-4c4b2dd79606"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:47:04 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": [
+ "442f0adf-8460-437f-baa4-890614a973a7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-correlation-request-id": [
+ "27e14f8f-2e6b-4178-a3b1-356d6704de50"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T084805Z:27e14f8f-2e6b-4178-a3b1-356d6704de50"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:48:04 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": [
+ "568375a6-7d92-455e-a7be-cbb06a1dd048"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b09bec9-2c31-4d51-aedd-b7f60cdc46a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T084905Z:7b09bec9-2c31-4d51-aedd-b7f60cdc46a7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:49:04 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": [
+ "5c4b34fb-9212-47fb-98a0-66d4517c1b99"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea54fda9-ec8d-40af-b522-7038fc4b3e87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T085005Z:ea54fda9-ec8d-40af-b522-7038fc4b3e87"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:50:05 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": [
+ "816ef692-1b9b-4476-aed0-b3937046282c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1bf38a3-3fd2-4f8a-9853-fdc823858995"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T085105Z:e1bf38a3-3fd2-4f8a-9853-fdc823858995"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:51:05 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": [
+ "e87781fe-4371-44cc-99d9-616fb78948c5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-correlation-request-id": [
+ "8225f4f4-748d-4702-b291-f0728181d5c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T085206Z:8225f4f4-748d-4702-b291-f0728181d5c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:52:05 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": [
+ "a7eaf4be-ff49-4cbb-a946-b956ba7ba116"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11941"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d1565a9-4f14-4f73-a49b-50e84b6e84ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T085306Z:0d1565a9-4f14-4f73-a49b-50e84b6e84ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:53:06 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": [
+ "913bb84a-6053-479d-bbe0-af76387a14ca"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11940"
+ ],
+ "x-ms-correlation-request-id": [
+ "290005c6-3f14-45ca-96ce-56061cbf7f16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T085406Z:290005c6-3f14-45ca-96ce-56061cbf7f16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:54:06 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": [
+ "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"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fa45564-1923-498c-9e76-9bde6aa13754"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T085607Z:0fa45564-1923-498c-9e76-9bde6aa13754"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 08:56:06 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": [
+ "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"
+ ],
+ "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/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}",
+ "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==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ea55ad2-9626-40f8-b5b5-9975f43c89da"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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": [
+ "e4469212-6328-4b89-a159-cb72b9e298b1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "56ec3048-cb17-4266-ad9f-5a818a942186"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090008Z:56ec3048-cb17-4266-ad9f-5a818a942186"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:00:07 GMT"
+ ],
+ "Content-Length": [
+ "196"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a56b172a-53ba-4a9e-8048-ba55515f1a4e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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": [
+ "b2c1842a-2995-4357-a3f6-96fca2b1f1b9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "42fad38e-2bc8-4201-b8ea-c7e18a0deeb1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090008Z:42fad38e-2bc8-4201-b8ea-c7e18a0deeb1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:00:08 GMT"
+ ],
+ "Content-Length": [
+ "2104"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-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}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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"
+ ],
+ "x-ms-original-request-ids": [
+ "2b2d889b-63b3-4070-a089-3e841b9ed639",
+ "8eaf8aef-4642-4823-9349-582861ae5762"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11933"
+ ],
+ "x-ms-request-id": [
+ "ea0c4f7a-2cde-4d21-a706-c9d4b48a32a0"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea0c4f7a-2cde-4d21-a706-c9d4b48a32a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T100239Z:ea0c4f7a-2cde-4d21-a706-c9d4b48a32a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 10:02:38 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "5954"
+ ]
+ },
+ "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}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "18a092c1-6529-4788-8421-e2c3f50411be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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": [
+ "439c8e1e-41df-4537-8f25-43b60abef3fd"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11930"
+ ],
+ "x-ms-correlation-request-id": [
+ "db61d49c-bd32-49e2-ab31-ec4175d7faa4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T100743Z:db61d49c-bd32-49e2-ab31-ec4175d7faa4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 10:07:43 GMT"
+ ],
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\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==",
+ "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"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "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-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"
+ ],
+ "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"
+ ]
+ },
+ "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": [
+ "76cfb311-69a8-4ad9-be8c-2682a676ab4d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "357f597b-449f-432a-9159-9420d02940d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090414Z:357f597b-449f-432a-9159-9420d02940d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:04: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": [
+ "53636d74-347d-45e0-b990-309b113dbf3e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "406e573f-af53-4d0e-a607-de2aa51d8ff9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090514Z:406e573f-af53-4d0e-a607-de2aa51d8ff9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:05:14 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": [
+ "51b2e30d-90bb-4486-9c38-e26bae66bf52"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "17eb1e70-9a22-4293-b801-064e31022592"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090614Z:17eb1e70-9a22-4293-b801-064e31022592"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:06:14 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": [
+ "5c4e7b66-4e2a-4067-952c-d5a80493ebeb"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "5db38d0e-dc89-41d4-b294-56f363f42b66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090715Z:5db38d0e-dc89-41d4-b294-56f363f42b66"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:07:14 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": [
+ "543a8ad5-57a8-4043-953f-5f3e871e83d6"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f0657b6-a626-4797-a717-b2a75251b940"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090815Z:3f0657b6-a626-4797-a717-b2a75251b940"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:08:14 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": [
+ "55f832fe-888e-49cd-af3d-fe37d43bf2cf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "f378bd8f-a4d2-4216-9499-155a1d5f1b46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T090915Z:f378bd8f-a4d2-4216-9499-155a1d5f1b46"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:09:15 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": [
+ "1416d78d-6fdf-4c19-a8dd-bf848f39866c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "0de296db-704b-425d-a400-ecdf61eff051"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091015Z:0de296db-704b-425d-a400-ecdf61eff051"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:10:15 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": [
+ "934ac539-e14e-4ef0-ace9-80396c1e5aef"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff50b825-1e7b-4c76-833f-ba9a66558ea7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091116Z:ff50b825-1e7b-4c76-833f-ba9a66558ea7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:11:15 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": [
+ "ad58629b-f351-4ae9-bb9b-f8e16710baf7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "5dc8ebc5-4cc2-4880-9d3b-b9354bd7b71e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091216Z:5dc8ebc5-4cc2-4880-9d3b-b9354bd7b71e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:12:15 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": [
+ "d04b451f-f111-46c8-a383-2c432b6ae9fc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "1020f406-8899-4110-8763-6b09c6db9547"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091316Z:1020f406-8899-4110-8763-6b09c6db9547"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:13:16 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": [
+ "6ddf0843-6707-4e1d-b83e-c57dfb666d2f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "0941cee8-bda7-4ac3-a742-2802cb585099"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091417Z:0941cee8-bda7-4ac3-a742-2802cb585099"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:14:16 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": [
+ "77567bea-bea3-4470-9df3-55c909a45f43"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "12c1dbac-a1d9-4e88-a6b9-2a0b751a71a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091517Z:12c1dbac-a1d9-4e88-a6b9-2a0b751a71a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:15:16 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": [
+ "434bb1d1-3180-4331-8898-d8461fbe3019"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cb6f261-eb2f-470a-82c2-6d776099999f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091617Z:6cb6f261-eb2f-470a-82c2-6d776099999f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:16:17 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": [
+ "8d9af19f-e128-4bb3-be77-51c0a3aa8f7e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9c1b868-223e-4e3a-990b-4d9b185dcb49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091718Z:c9c1b868-223e-4e3a-990b-4d9b185dcb49"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:17:17 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": [
+ "eba3e4a8-db88-4c16-a311-6d3831428910"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb3bbe82-ef3d-43e3-9a0a-0d922c10fc2c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091818Z:fb3bbe82-ef3d-43e3-9a0a-0d922c10fc2c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:18:18 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": [
+ "ad7da771-8d4d-49c3-8575-f6c500016e0b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c963cb7-afdc-42e7-a341-48028503b115"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T091918Z:3c963cb7-afdc-42e7-a341-48028503b115"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:19:18 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": [
+ "2febaf70-b827-40e2-80da-26f46ff82c03"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11939"
+ ],
+ "x-ms-correlation-request-id": [
+ "30cfd616-627e-44aa-8c78-760a119e6b2a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T092019Z:30cfd616-627e-44aa-8c78-760a119e6b2a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:20:18 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": [
+ "a12110f5-4b5f-4225-b4c4-7bf75ac39940"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11938"
+ ],
+ "x-ms-correlation-request-id": [
+ "536a65dd-11c4-4fa7-b528-c17c7268f38c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T092119Z:536a65dd-11c4-4fa7-b528-c17c7268f38c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:21:18 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": [
+ "1d84c4e5-373d-4a7e-8fc9-9656b5aa7458"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11937"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c713fcb-a2a0-47ac-95d6-b7e5eedcd166"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T092219Z:8c713fcb-a2a0-47ac-95d6-b7e5eedcd166"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:22:18 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": [
+ "38c48e26-504a-47d9-8914-b189431bf74d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa1f97a2-b058-42b7-a25b-9c47ffa33397"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T092319Z:fa1f97a2-b058-42b7-a25b-9c47ffa33397"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:23:19 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": [
+ "0ad659a2-b25c-417c-9744-3c80596e32d0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "050a73e9-c559-4432-bb4f-45108eb6d970"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T092420Z:050a73e9-c559-4432-bb4f-45108eb6d970"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:24:19 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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3192,7 +6228,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3201,25 +6237,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fa18dba8-977c-4651-b186-4be9cd8c3c36"
+ "e211a40e-494c-49b3-b211-7941ed341935"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11952"
+ "11939"
],
"x-ms-correlation-request-id": [
- "969d350f-25e4-410b-ba3d-820e93081c18"
+ "0bb17abf-f4c2-42e9-a6b2-b56ac52020fd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202322Z:969d350f-25e4-410b-ba3d-820e93081c18"
+ "WESTUS:20210715T092520Z:0bb17abf-f4c2-42e9-a6b2-b56ac52020fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:23:21 GMT"
+ "Thu, 15 Jul 2021 09:25:20 GMT"
],
"Expires": [
"-1"
@@ -3232,16 +6268,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3252,7 +6291,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3261,25 +6300,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b4959a25-10d1-458b-bcb0-893f523afd80"
+ "b561164f-eccc-4cac-ac44-3a0c234b0ee1"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11951"
+ "11938"
],
"x-ms-correlation-request-id": [
- "dc0f53c8-07bc-4aa8-a60c-0b4fad17eb77"
+ "cccc1bf6-d12b-4500-ac66-6e335c0fd10b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202422Z:dc0f53c8-07bc-4aa8-a60c-0b4fad17eb77"
+ "WESTUS:20210715T092620Z:cccc1bf6-d12b-4500-ac66-6e335c0fd10b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:24:21 GMT"
+ "Thu, 15 Jul 2021 09:26:19 GMT"
],
"Expires": [
"-1"
@@ -3292,16 +6331,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3312,7 +6354,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3321,25 +6363,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "83f02ee7-42fa-4844-aa03-afb4fb260375"
+ "876f386e-7955-40f2-be35-f8e7653e1c4b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "11937"
],
"x-ms-correlation-request-id": [
- "001e4e5d-b33f-4e61-9b97-a3891c3e3eae"
+ "e3a42bc7-7d72-4163-ab95-3e9f12e93f14"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202523Z:001e4e5d-b33f-4e61-9b97-a3891c3e3eae"
+ "WESTUS:20210715T092721Z:e3a42bc7-7d72-4163-ab95-3e9f12e93f14"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:25:22 GMT"
+ "Thu, 15 Jul 2021 09:27:20 GMT"
],
"Expires": [
"-1"
@@ -3352,16 +6394,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3372,7 +6417,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3381,25 +6426,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0416bc6d-3b5c-4d73-b7aa-d682c7e229a7"
+ "651550df-58c9-4c9e-8a36-e6fed98ca706"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11949"
+ "11936"
],
"x-ms-correlation-request-id": [
- "018e251e-dd1e-4eaa-8c02-7500f9dd6f64"
+ "f658a779-e6d3-4bd8-8014-51a68cdc26ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202623Z:018e251e-dd1e-4eaa-8c02-7500f9dd6f64"
+ "WESTUS:20210715T092821Z:f658a779-e6d3-4bd8-8014-51a68cdc26ec"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:26:22 GMT"
+ "Thu, 15 Jul 2021 09:28:20 GMT"
],
"Expires": [
"-1"
@@ -3412,16 +6457,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3432,7 +6480,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3441,25 +6489,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c6b5845-cd3d-4bec-85df-2499a979471a"
+ "88fb0ecc-4bf9-4e6d-8148-3862a0ae6158"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11948"
+ "11935"
],
"x-ms-correlation-request-id": [
- "88d9b24a-b251-457a-968a-32ebed89bff1"
+ "9ed8af5a-bbc8-4a47-853b-4cbff8da8548"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202723Z:88d9b24a-b251-457a-968a-32ebed89bff1"
+ "WESTUS:20210715T092921Z:9ed8af5a-bbc8-4a47-853b-4cbff8da8548"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:27:23 GMT"
+ "Thu, 15 Jul 2021 09:29:21 GMT"
],
"Expires": [
"-1"
@@ -3472,16 +6520,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3492,7 +6543,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3501,25 +6552,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8f7c6477-191f-47f6-a096-5bd00921d341"
+ "0c11d76f-921a-446e-9734-f9a012e15556"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11947"
+ "11939"
],
"x-ms-correlation-request-id": [
- "55d8f052-036f-4648-8d52-0407a8054d3b"
+ "a396d595-af52-4a2a-96e3-a338929c092f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202823Z:55d8f052-036f-4648-8d52-0407a8054d3b"
+ "WESTUS:20210715T093022Z:a396d595-af52-4a2a-96e3-a338929c092f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:28:23 GMT"
+ "Thu, 15 Jul 2021 09:30:21 GMT"
],
"Expires": [
"-1"
@@ -3532,16 +6583,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3552,7 +6606,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3561,25 +6615,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d2bb4e6c-36e9-463a-9ee6-7dc8a57d3124"
+ "8d7bd778-415f-4853-a4d3-1b0be9b0dcbc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
+ "11938"
],
"x-ms-correlation-request-id": [
- "c873861e-9949-465c-8aae-724c2adb5331"
+ "8f4454d4-0080-4026-babf-e1ffdbf609c2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T202924Z:c873861e-9949-465c-8aae-724c2adb5331"
+ "WESTUS:20210715T093122Z:8f4454d4-0080-4026-babf-e1ffdbf609c2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:29:23 GMT"
+ "Thu, 15 Jul 2021 09:31:22 GMT"
],
"Expires": [
"-1"
@@ -3592,16 +6646,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3612,7 +6669,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3621,25 +6678,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef781ffb-fea4-4225-ad22-0de79c079f87"
+ "a4f536da-d7e6-410d-a9d6-2f42809c6751"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11937"
],
"x-ms-correlation-request-id": [
- "a72a0ae2-ec16-413e-b41f-570a9c36aa03"
+ "d116bd1c-7b5a-4936-901e-27b030d8c591"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203024Z:a72a0ae2-ec16-413e-b41f-570a9c36aa03"
+ "WESTUS:20210715T093222Z:d116bd1c-7b5a-4936-901e-27b030d8c591"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:30:23 GMT"
+ "Thu, 15 Jul 2021 09:32:21 GMT"
],
"Expires": [
"-1"
@@ -3652,16 +6709,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3672,7 +6732,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3681,25 +6741,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9a9a4bd5-498b-459c-9931-b3ff1b962d21"
+ "b7b0909f-1dba-46f4-9d54-3395cd5d5b39"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "11936"
],
"x-ms-correlation-request-id": [
- "d01373fc-26d7-4f59-9ca2-a9262a3efe92"
+ "7ba2c9b9-95ad-4515-a6f1-c3ecaf525587"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203124Z:d01373fc-26d7-4f59-9ca2-a9262a3efe92"
+ "WESTUS:20210715T093322Z:7ba2c9b9-95ad-4515-a6f1-c3ecaf525587"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:31:23 GMT"
+ "Thu, 15 Jul 2021 09:33:22 GMT"
],
"Expires": [
"-1"
@@ -3712,16 +6772,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3732,7 +6795,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3741,25 +6804,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2b594cd-3333-44e1-8c3c-65c4eb6d4d12"
+ "63add416-49f3-4adf-b94e-0ad8e9cd5c00"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11943"
+ "11935"
],
"x-ms-correlation-request-id": [
- "881711f2-b153-436c-82df-72f48229930d"
+ "f6054251-7c56-4858-a851-dd65f16cfcea"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203224Z:881711f2-b153-436c-82df-72f48229930d"
+ "WESTUS:20210715T093423Z:f6054251-7c56-4858-a851-dd65f16cfcea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:32:24 GMT"
+ "Thu, 15 Jul 2021 09:34:22 GMT"
],
"Expires": [
"-1"
@@ -3772,16 +6835,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3792,7 +6858,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3801,25 +6867,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1849932-44c2-4af0-8fd0-ec20b2864d01"
+ "022fda1b-ff50-4020-aab1-80c3282e8710"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11942"
+ "11938"
],
"x-ms-correlation-request-id": [
- "2d8cd19b-77e7-4bf3-9517-76eebd793893"
+ "63de2255-dc91-42e7-b750-bb5d8c705880"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203325Z:2d8cd19b-77e7-4bf3-9517-76eebd793893"
+ "WESTUS:20210715T093523Z:63de2255-dc91-42e7-b750-bb5d8c705880"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:33:24 GMT"
+ "Thu, 15 Jul 2021 09:35:23 GMT"
],
"Expires": [
"-1"
@@ -3832,16 +6898,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3852,7 +6921,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3861,25 +6930,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b1ab348-8c0f-42fb-b143-8781a63b4275"
+ "d3503a7b-4658-4a40-a943-e32e1d0612ea"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11941"
+ "11937"
],
"x-ms-correlation-request-id": [
- "ae9c4062-877b-4c42-bafd-e26aee04a419"
+ "20706565-9760-4c0e-a6f2-92f6c6c1688b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203425Z:ae9c4062-877b-4c42-bafd-e26aee04a419"
+ "WESTUS:20210715T093623Z:20706565-9760-4c0e-a6f2-92f6c6c1688b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:34:24 GMT"
+ "Thu, 15 Jul 2021 09:36:23 GMT"
],
"Expires": [
"-1"
@@ -3892,16 +6961,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3912,7 +6984,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3921,25 +6993,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3ca464ab-de7e-4a5d-9cf8-4afa5c283204"
+ "a63fa2c2-88d8-44f1-bd2e-87fbd78d80cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11940"
+ "11936"
],
"x-ms-correlation-request-id": [
- "1eecb4dc-94c9-4b5f-af9d-b586f3da4d28"
+ "5eaec28d-2b6b-4eac-baef-b3e65277ee04"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203525Z:1eecb4dc-94c9-4b5f-af9d-b586f3da4d28"
+ "WESTUS:20210715T093724Z:5eaec28d-2b6b-4eac-baef-b3e65277ee04"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:35:25 GMT"
+ "Thu, 15 Jul 2021 09:37:23 GMT"
],
"Expires": [
"-1"
@@ -3952,16 +7024,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3972,7 +7047,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -3981,25 +7056,88 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2ee2066d-12cb-4711-9333-4bb1dee6437b"
+ "99745199-ecf5-424e-8894-81f2bf17c8da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11939"
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "6315c640-5493-455a-ad63-a428f7c22718"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T093824Z:6315c640-5493-455a-ad63-a428f7c22718"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:38:24 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": [
+ "9b21588c-bacc-4540-943c-e12317e79a43"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11934"
],
"x-ms-correlation-request-id": [
- "4c909cf1-ddb0-4190-849c-0c7e1e39d501"
+ "de100d12-7f47-4284-a429-56dcb2a474e9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203625Z:4c909cf1-ddb0-4190-849c-0c7e1e39d501"
+ "WESTUS:20210715T093924Z:de100d12-7f47-4284-a429-56dcb2a474e9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:36:25 GMT"
+ "Thu, 15 Jul 2021 09:39:24 GMT"
],
"Expires": [
"-1"
@@ -4012,16 +7150,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4032,7 +7173,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4041,7 +7182,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d1efe78-b490-4dd6-883f-0e6d83794cd5"
+ "d0f29cf1-d5d8-4a6f-8472-c368b56cddca"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -4050,16 +7191,16 @@
"11938"
],
"x-ms-correlation-request-id": [
- "9efa9130-fcee-40a9-a1b4-dca051753f4d"
+ "da79b053-ce35-4acc-b915-8a9714b92ce5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203726Z:9efa9130-fcee-40a9-a1b4-dca051753f4d"
+ "WESTUS:20210715T094025Z:da79b053-ce35-4acc-b915-8a9714b92ce5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:37:25 GMT"
+ "Thu, 15 Jul 2021 09:40:24 GMT"
],
"Expires": [
"-1"
@@ -4072,16 +7213,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4092,7 +7236,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4101,7 +7245,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0f03939-f23c-43f2-b3d3-e42a340cc281"
+ "82f597fe-b6bb-4f79-b259-0b0169963e5b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -4110,16 +7254,142 @@
"11937"
],
"x-ms-correlation-request-id": [
- "2809f687-dfc8-40d1-9290-f2ac7333468b"
+ "59828e19-5a8a-428c-868c-e5e317bcc914"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T094125Z:59828e19-5a8a-428c-868c-e5e317bcc914"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:41:24 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": [
+ "1f3d521f-68a9-4822-9721-912474328de2"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11936"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b993e31-835a-4e66-b3fc-2658d08e6856"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T094225Z:3b993e31-835a-4e66-b3fc-2658d08e6856"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 09:42:25 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": [
+ "7e9051ea-c50b-4f7b-ba4e-979a4fe27b8a"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11935"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c6c94f3-dd8c-4262-ab77-896f0f589696"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203826Z:2809f687-dfc8-40d1-9290-f2ac7333468b"
+ "WESTUS:20210715T094325Z:6c6c94f3-dd8c-4262-ab77-896f0f589696"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:38:26 GMT"
+ "Thu, 15 Jul 2021 09:43:25 GMT"
],
"Expires": [
"-1"
@@ -4132,16 +7402,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4152,7 +7425,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4161,25 +7434,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8bab25df-1b70-49fa-bfb1-d8b720719ea8"
+ "440dd5e3-56fa-4d71-b2b3-3f77b4a884be"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11934"
],
"x-ms-correlation-request-id": [
- "1808c0bb-b90e-4291-ba6a-31cfa847f5a5"
+ "d020cbeb-0ce8-4fb1-a604-e18145a0aa15"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T203926Z:1808c0bb-b90e-4291-ba6a-31cfa847f5a5"
+ "WESTUS:20210715T094426Z:d020cbeb-0ce8-4fb1-a604-e18145a0aa15"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:39:26 GMT"
+ "Thu, 15 Jul 2021 09:44:26 GMT"
],
"Expires": [
"-1"
@@ -4192,16 +7465,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4212,7 +7488,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4221,25 +7497,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "74157844-e7fb-46c5-acc6-ffb3d5ae31af"
+ "d817100c-878e-4997-a4b9-cbc7fef5cdcd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11938"
],
"x-ms-correlation-request-id": [
- "a10795d3-100b-425d-b678-6e1308e17136"
+ "53ecb724-52d8-4c26-a45f-d91a38441055"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204026Z:a10795d3-100b-425d-b678-6e1308e17136"
+ "WESTUS:20210715T094526Z:53ecb724-52d8-4c26-a45f-d91a38441055"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:40:26 GMT"
+ "Thu, 15 Jul 2021 09:45:26 GMT"
],
"Expires": [
"-1"
@@ -4252,16 +7528,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4272,7 +7551,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4281,25 +7560,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b0fda49-8e9c-4921-9897-b71388e1253f"
+ "d149ea79-3d3a-449c-b522-ee071952c899"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11937"
],
"x-ms-correlation-request-id": [
- "298796e9-5390-476f-96c9-be085d7d92f5"
+ "0b3bd173-26b6-4e10-83eb-1af17fa64d0f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204127Z:298796e9-5390-476f-96c9-be085d7d92f5"
+ "WESTUS:20210715T094626Z:0b3bd173-26b6-4e10-83eb-1af17fa64d0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:41:26 GMT"
+ "Thu, 15 Jul 2021 09:46:25 GMT"
],
"Expires": [
"-1"
@@ -4312,16 +7591,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4332,7 +7614,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4341,25 +7623,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "860ffa2f-b22d-4810-99dd-9c8bc944d0ef"
+ "18fbc1d0-292f-41c7-8252-b35fb1c1e1b2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11936"
],
"x-ms-correlation-request-id": [
- "569a1c93-3415-4e63-9cf4-9f7a47b4c130"
+ "5516e4be-45bc-420b-9087-c8cccfc54335"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204227Z:569a1c93-3415-4e63-9cf4-9f7a47b4c130"
+ "WESTUS:20210715T094726Z:5516e4be-45bc-420b-9087-c8cccfc54335"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:42:26 GMT"
+ "Thu, 15 Jul 2021 09:47:26 GMT"
],
"Expires": [
"-1"
@@ -4372,16 +7654,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4392,7 +7677,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4401,25 +7686,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "05acd609-9eca-4024-a96f-787cfd60c263"
+ "4ecb88a6-59a5-4de1-ba5c-57b96bf693bb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11935"
],
"x-ms-correlation-request-id": [
- "e528d8c3-5d7e-4d8c-8577-0062dbf7a0b9"
+ "622c37f5-293e-41f4-ac55-df553000c11b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204327Z:e528d8c3-5d7e-4d8c-8577-0062dbf7a0b9"
+ "WESTUS:20210715T094827Z:622c37f5-293e-41f4-ac55-df553000c11b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:43:27 GMT"
+ "Thu, 15 Jul 2021 09:48:27 GMT"
],
"Expires": [
"-1"
@@ -4432,16 +7717,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4452,7 +7740,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4461,25 +7749,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd096223-fe08-4c1c-b1f0-acb8c6636380"
+ "a6175a12-20d6-4b8b-95f9-febe74e99a01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11934"
],
"x-ms-correlation-request-id": [
- "328cb91f-af75-4c2d-862d-96470b1601e3"
+ "0663c76f-a787-4a6c-b7e0-199106d852b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204427Z:328cb91f-af75-4c2d-862d-96470b1601e3"
+ "WESTUS:20210715T094927Z:0663c76f-a787-4a6c-b7e0-199106d852b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:44:26 GMT"
+ "Thu, 15 Jul 2021 09:49:26 GMT"
],
"Expires": [
"-1"
@@ -4492,16 +7780,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4512,7 +7803,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4521,25 +7812,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94867378-8b00-4753-8caf-2eb05f3c8832"
+ "c21a34c6-87ab-4be8-80c9-c107ab55954d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11938"
],
"x-ms-correlation-request-id": [
- "9cca36e7-fde1-4da1-a092-980f426e1c1f"
+ "e088c300-69dd-4cea-83e7-ec52f9e4091a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204528Z:9cca36e7-fde1-4da1-a092-980f426e1c1f"
+ "WESTUS:20210715T095027Z:e088c300-69dd-4cea-83e7-ec52f9e4091a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:45:27 GMT"
+ "Thu, 15 Jul 2021 09:50:27 GMT"
],
"Expires": [
"-1"
@@ -4552,16 +7843,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4572,7 +7866,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4581,25 +7875,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "65b691f5-c878-4e2a-801b-d41a08c47c1e"
+ "7dfaaffb-a3e2-4600-a2f8-ac03223ae2a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11937"
],
"x-ms-correlation-request-id": [
- "f156589a-f3b4-40e2-ab8c-3a947e52114e"
+ "1bcd858c-9b47-4e78-8f91-c7e8f1d21706"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204628Z:f156589a-f3b4-40e2-ab8c-3a947e52114e"
+ "WESTUS:20210715T095128Z:1bcd858c-9b47-4e78-8f91-c7e8f1d21706"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:46:28 GMT"
+ "Thu, 15 Jul 2021 09:51:27 GMT"
],
"Expires": [
"-1"
@@ -4612,16 +7906,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4632,7 +7929,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4641,25 +7938,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cb46f1f1-1538-4277-8d29-a145c04fce21"
+ "0246d664-9165-4f16-ae7b-b2f2b687255e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11936"
],
"x-ms-correlation-request-id": [
- "a65408ac-f90b-4b36-a04f-1e21fed7b5d8"
+ "04bbc916-daa6-4a26-8b96-d16a9608c995"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204728Z:a65408ac-f90b-4b36-a04f-1e21fed7b5d8"
+ "WESTUS:20210715T095228Z:04bbc916-daa6-4a26-8b96-d16a9608c995"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:47:27 GMT"
+ "Thu, 15 Jul 2021 09:52:27 GMT"
],
"Expires": [
"-1"
@@ -4672,16 +7969,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4692,7 +7992,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4701,25 +8001,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e0b6c320-599a-43b9-8b56-25d171470310"
+ "ab01a5ab-b3f0-43ec-a9c0-621553c0274e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11935"
],
"x-ms-correlation-request-id": [
- "ed1ebe0b-558a-4583-b1f5-b6717bccefb6"
+ "9f35116b-97e8-4b90-8a45-695a247414c3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204828Z:ed1ebe0b-558a-4583-b1f5-b6717bccefb6"
+ "WESTUS:20210715T095328Z:9f35116b-97e8-4b90-8a45-695a247414c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:48:28 GMT"
+ "Thu, 15 Jul 2021 09:53:28 GMT"
],
"Expires": [
"-1"
@@ -4732,16 +8032,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4752,7 +8055,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4761,25 +8064,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6d2e89d9-5699-4848-8eb0-3d27cc20b6a6"
+ "6773e8de-feda-4557-8c25-4d3bb5db7b4b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11934"
],
"x-ms-correlation-request-id": [
- "5ce40663-114c-4eec-b76f-e8efb100712d"
+ "fa6da06a-7bba-4310-a166-b9c19b7cf169"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T204929Z:5ce40663-114c-4eec-b76f-e8efb100712d"
+ "WESTUS:20210715T095428Z:fa6da06a-7bba-4310-a166-b9c19b7cf169"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:49:28 GMT"
+ "Thu, 15 Jul 2021 09:54:28 GMT"
],
"Expires": [
"-1"
@@ -4792,16 +8095,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4812,7 +8118,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4821,25 +8127,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4492be07-5471-4270-8734-efb48f723da9"
+ "d06a27d0-6583-4e5e-bfd8-65273828f0dc"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11938"
],
"x-ms-correlation-request-id": [
- "567e0a45-b730-4af4-81cb-ecea9ca5bfc4"
+ "5634f709-414b-41ce-8334-e8f39567c845"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205029Z:567e0a45-b730-4af4-81cb-ecea9ca5bfc4"
+ "WESTUS:20210715T095529Z:5634f709-414b-41ce-8334-e8f39567c845"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:50:28 GMT"
+ "Thu, 15 Jul 2021 09:55:28 GMT"
],
"Expires": [
"-1"
@@ -4852,16 +8158,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4872,7 +8181,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4881,25 +8190,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5680a498-e5b7-4fd6-9bbc-5b1a9b243c17"
+ "979650a9-2d8f-414c-ad03-41fbb925d1e6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11937"
],
"x-ms-correlation-request-id": [
- "e62728bb-f26e-48f5-8c95-7f8c5417ab13"
+ "bea6f16a-884e-467d-b7bb-c6915f64ec43"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205129Z:e62728bb-f26e-48f5-8c95-7f8c5417ab13"
+ "WESTUS:20210715T095629Z:bea6f16a-884e-467d-b7bb-c6915f64ec43"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:51:29 GMT"
+ "Thu, 15 Jul 2021 09:56:28 GMT"
],
"Expires": [
"-1"
@@ -4912,16 +8221,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4932,7 +8244,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -4941,25 +8253,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3ca45495-c012-47bf-9caf-f0eee126f71f"
+ "6fbbfb27-d3bd-4a90-997e-4deeb15cab77"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11936"
],
"x-ms-correlation-request-id": [
- "d7109413-acb1-4a73-9dbb-572bc8942c48"
+ "f5e0746c-76f4-47c9-930c-50cdd54d1009"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205229Z:d7109413-acb1-4a73-9dbb-572bc8942c48"
+ "WESTUS:20210715T095729Z:f5e0746c-76f4-47c9-930c-50cdd54d1009"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:52:29 GMT"
+ "Thu, 15 Jul 2021 09:57:29 GMT"
],
"Expires": [
"-1"
@@ -4972,16 +8284,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -4992,7 +8307,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -5001,25 +8316,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e45afbe-4fe9-41e0-918d-89af478f7b06"
+ "ba9494fe-dd03-497a-aafd-38e7d5f780b8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11935"
],
"x-ms-correlation-request-id": [
- "65e09cad-750a-42d5-b2b1-855207094fb2"
+ "163fdcca-e97e-4558-9502-3abdfe78e668"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205330Z:65e09cad-750a-42d5-b2b1-855207094fb2"
+ "WESTUS:20210715T095830Z:163fdcca-e97e-4558-9502-3abdfe78e668"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:53:29 GMT"
+ "Thu, 15 Jul 2021 09:58:29 GMT"
],
"Expires": [
"-1"
@@ -5032,16 +8347,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5052,7 +8370,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -5061,25 +8379,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8979a1ed-4220-4ac2-81a0-188f1a9352cf"
+ "06a242ec-c1d9-4c3b-8159-9bcac7a884bd"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11934"
],
"x-ms-correlation-request-id": [
- "2a9af625-da61-49d0-b34b-81da440b3e2a"
+ "346dc6e6-2835-4703-bfdf-116838eaf73e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205430Z:2a9af625-da61-49d0-b34b-81da440b3e2a"
+ "WESTUS:20210715T095930Z:346dc6e6-2835-4703-bfdf-116838eaf73e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:54:29 GMT"
+ "Thu, 15 Jul 2021 09:59:30 GMT"
],
"Expires": [
"-1"
@@ -5092,16 +8410,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5112,7 +8433,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01"
+ "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"
@@ -5121,25 +8442,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d2965099-411c-4d30-a16b-fe9019d4a709"
+ "9dda1828-8f28-42c3-b6d6-5804976ae741"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11936"
+ "11938"
],
"x-ms-correlation-request-id": [
- "f176e77d-93a1-4913-a701-9815922f9c37"
+ "9bcc2341-bd79-4e99-9751-d5ae2d3d2d08"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205530Z:f176e77d-93a1-4913-a701-9815922f9c37"
+ "WESTUS:20210715T100030Z:9bcc2341-bd79-4e99-9751-d5ae2d3d2d08"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:55:30 GMT"
+ "Thu, 15 Jul 2021 10:00:29 GMT"
],
"Expires": [
"-1"
@@ -5152,16 +8473,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9BY3RfYTY0OTI1NzY=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOUJZM1JmWVRZME9USTFOelk9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5175,28 +8499,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a9d1c3a9-dd71-41d9-8ac4-f3d0c782b156"
+ "85598209-7b84-4d99-bebd-b57293a12a70"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11935"
+ "11937"
],
"x-ms-correlation-request-id": [
- "b8a8b607-da81-4fe7-8353-9075439e8d72"
+ "a42ec73d-a2b5-4757-9111-868c56cc01bc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205630Z:b8a8b607-da81-4fe7-8353-9075439e8d72"
+ "WESTUS:20210715T100130Z:a42ec73d-a2b5-4757-9111-868c56cc01bc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:56:29 GMT"
+ "Thu, 15 Jul 2021 10:01:30 GMT"
],
"Content-Length": [
- "2068"
+ "2103"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5205,26 +8529,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621\",\r\n \"name\": \"ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtEE=\",\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\": \"2020-04-20T20:12:18.6916233Z\",\r\n \"gatewayUrl\": \"https://ps6621.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6621-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6621.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6621.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6621.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6621.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6621.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.149.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\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/getssotoken?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/getssotoken?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvZ2V0c3NvdG9rZW4/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5afa31d-bbbe-41ee-8764-46c64ffea1df"
+ "90e84454-7399-4ab5-9278-34b2a103259f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5238,7 +8562,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1a2ddfc5-167c-40eb-adf5-8d711a9f66c4"
+ "91c34c4a-7229-46ed-99cf-cfd1347349a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -5247,19 +8571,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "82c2947b-2d18-42a9-a7cd-5fb1d99450a2"
+ "14bb91b5-512c-4aa9-a225-9c19422517e1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205630Z:82c2947b-2d18-42a9-a7cd-5fb1d99450a2"
+ "WESTUS:20210715T100131Z:14bb91b5-512c-4aa9-a225-9c19422517e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:56:30 GMT"
+ "Thu, 15 Jul 2021 10:01:30 GMT"
],
"Content-Length": [
- "190"
+ "192"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5268,26 +8592,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"redirectUri\": \"https://ps6621.portal.azure-api.net:443/signin-sso?token=1%26202004202101%26P8PHoqlgEZI7nZeJyw%2bBRNxBig1MkihZDewxEsWrMXQ%2bMXvMLk5IkwIj1812HThaF3jyxPhvp7b2UIbEVvxh4w%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"redirectUri\": \"https://ps4154.portal.azure-api.net:443/signin-sso?token=1%26202107151006%26nr9vhCt6umzmBL5byzwE4e8e%2fzRAW%2brS1sC2DLPE%2f3BCSp2knK7BqWLQwtXiHQEfusszTP548MSPrq7qNKBs1w%3d%3d\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "025df732-aaeb-4fa0-a6e2-034cf474b615"
+ "6e7fd8ad-75d3-42ac-8924-1de5461d95cd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5298,45 +8622,59 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "a172af21-6951-49a2-8725-8e629ae005c8",
- "509b5e9f-2c73-458b-b83a-d5436c4b6ebd",
- "53ebc997-0f19-46ef-9dd8-517a5281a229",
- "f898185f-1b87-4764-8a84-ab438a354a55",
- "db99ac6e-4310-4409-8cb0-24e1439c9edb",
- "7bf01cfa-d2bf-44f5-a3bb-4b4f867ecaf6",
- "a3c04ec7-5607-4604-a850-44e77af156d7",
- "f9b01f51-2e45-4a09-861b-f5bfbb33f062",
- "738689d1-29a5-4d61-9356-a4254e5e1203",
- "6be28186-a9a9-4a86-b23b-ea0ce0ba7626",
- "d1d6359b-b80e-4b5d-8bf0-3f5ffef591a2",
- "f5cda88b-e62f-4aaa-92e0-f7d8fe9ea88a",
- "9b9973d8-fdc4-4919-b62e-dc5815d7a9e8",
- "42c809fe-c1a2-45b8-8973-86db8fe0fa93",
- "c50671fc-1e0d-4606-9c21-50f765e7e328",
- "47f272de-7f88-4e54-b2ac-12e4db393767",
- "f81be80a-37a7-4918-b685-0e7a4d656f67",
- "0127b7c3-e244-4ef8-b793-817a72878242",
- "77c0a76d-d518-4153-9227-30e3aa06bfa1",
- "1a4e3a47-21f6-4f0b-9ddc-b4a231c8cbd6",
- "4bfd68da-ca39-48ef-848d-a78f871b716b",
- "81be935e-dd59-446a-87be-3a46bdfc50ad",
- "60725bca-535f-4814-b15c-910938d39b22",
- "0f912229-da6a-41b7-a947-c673b6b3a94e",
- "fa4642d9-03c5-4824-994b-af48a4d3fd15",
- "6a7b397d-0cb1-4162-80ba-7375c452982e",
- "e75746f8-5828-402c-bed6-346e380a989f"
+ "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"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11934"
+ "11936"
],
"x-ms-request-id": [
- "ede5ef90-5291-4592-9af3-031e20baa6cb"
+ "aab78b3c-2e36-4930-8b50-58ac66881855"
],
"x-ms-correlation-request-id": [
- "ede5ef90-5291-4592-9af3-031e20baa6cb"
+ "aab78b3c-2e36-4930-8b50-58ac66881855"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205632Z:ede5ef90-5291-4592-9af3-031e20baa6cb"
+ "WESTUS:20210715T100132Z:aab78b3c-2e36-4930-8b50-58ac66881855"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5345,7 +8683,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:56:31 GMT"
+ "Thu, 15 Jul 2021 10:01:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5354,29 +8692,29 @@
"-1"
],
"Content-Length": [
- "182800"
+ "357393"
]
},
- "ResponseBody": "{\r\n \"value\": [\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\": \"AAAAAAAAX7w=\",\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 }\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 },\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\": \"AAAAAAABuEQ=\",\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 }\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 },\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\": \"AAAAAAABAUk=\",\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 }\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 },\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\": \"AAAAAAAAu7k=\",\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 }\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 },\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\": \"AAAAAAAA5cU=\",\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 }\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 },\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\": \"AAAAAAABKlI=\",\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 }\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 },\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\": \"AAAAAAABOpg=\",\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 }\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 },\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\": \"AAAAAAAAxfs=\",\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 }\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 },\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\": \"AAAAAAAAsQI=\",\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 }\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 },\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\": \"AAAAAAABL5Y=\",\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 }\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 },\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\": \"AAAAAAABUeI=\",\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 }\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 },\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\": \"AAAAAAABZug=\",\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 }\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 },\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\": \"AAAAAAAEcdQ=\",\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 }\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 },\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\": \"AAAAAAAEcak=\",\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\": \"2019-04-27T05:30:48.0387377Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.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-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 }\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 },\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\": \"AAAAAAAEniE=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicetestpool\",\r\n \"name\": \"rpbvttestservicetestpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAEnho=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"apimanagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-09-27T03:54:47.7889108Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicetestpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicetestpool-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicetestpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicetestpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicetestpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicetestpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicetestpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.217.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\": \"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 },\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\": \"AAAAAAAEcbk=\",\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 }\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 },\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\": \"AAAAAAACCI0=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkimtest/providers/Microsoft.ApiManagement/service/mkimconsumptionhostnametest\",\r\n \"name\": \"mkimconsumptionhostnametest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAACDKo=\",\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\": \"2019-06-04T15:13:52.423024Z\",\r\n \"gatewayUrl\": \"https://mkimconsumptionhostnametest.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\": \"mkimconsumptionhostnametest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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 },\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\": \"AAAAAAACTr8=\",\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 }\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 },\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\": \"AAAAAAACT8M=\",\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 }\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 },\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\": \"AAAAAAACVA8=\",\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 }\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 },\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\": \"AAAAAAACeBE=\",\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\": true\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\": 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\": \"AAAAAAACJlk=\",\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 }\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 },\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 \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAACUac=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adasdasda\",\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 }\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 },\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\": \"AAAAAAACUaU=\",\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 }\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\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/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\": \"AAAAAAACUa0=\",\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 }\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 },\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\": \"AAAAAAACUas=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicedefaultpool\",\r\n \"name\": \"rpbvttestservicedefaultpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAADSWM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Samirs Company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:42:16.6832196Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicedefaultpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicedefaultpool-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicedefaultpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicedefaultpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicedefaultpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicedefaultpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicedefaultpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.166.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\": \"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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1095/providers/Microsoft.ApiManagement/service/ps3854\",\r\n \"name\": \"ps3854\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEcFY=\",\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\": \"2020-04-10T22:52:15.0395324Z\",\r\n \"gatewayUrl\": \"https://ps3854.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3854-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3854.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps3854.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3854.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3854.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3854.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.35.120\"\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 \"publicIPAddresses\": [\r\n \"13.82.193.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps3854-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.44.129.170\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps3854-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\": 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\": \"0e38b926-dbf0-480e-92e3-07cba7559a15\",\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621\",\r\n \"name\": \"ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtEE=\",\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\": \"2020-04-20T20:12:18.6916233Z\",\r\n \"gatewayUrl\": \"https://ps6621.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6621-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6621.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6621.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6621.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6621.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6621.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.149.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\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": 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\": \"AAAAAAADelU=\",\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 }\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 },\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\": \"AAAAAAAEIgU=\",\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 }\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\": 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\": \"AAAAAAAC6JA=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/vifedordptest\",\r\n \"name\": \"vifedordptest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEmjM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-16T22:58:03.9908914Z\",\r\n \"gatewayUrl\": \"https://vifedordptest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedordptest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedordptest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedordptest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedordptest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedordptest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedordptest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.55.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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3418/providers/Microsoft.ApiManagement/service/ps9048\",\r\n \"name\": \"ps9048\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEaP4=\",\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\": \"2020-04-09T18:36:58.5960335Z\",\r\n \"gatewayUrl\": \"https://ps9048.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9048-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9048.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9048.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9048.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9048.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9048.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.232.68\"\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 \"publicIPAddresses\": [\r\n \"13.92.180.5\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps9048-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.44.135.48\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps9048-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\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/vifedotest\",\r\n \"name\": \"vifedotest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtC4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-03T19:37:33.016904Z\",\r\n \"gatewayUrl\": \"https://vifedotest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedotest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedotest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedotest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedotest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedotest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedotest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.201.104\"\r\n ],\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.Protocols.Server.Http2\": \"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 },\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7013/providers/Microsoft.ApiManagement/service/ps8197\",\r\n \"name\": \"ps8197\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEaRo=\",\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\": \"2020-04-09T19:00:34.9730218Z\",\r\n \"gatewayUrl\": \"https://ps8197.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8197-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8197.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8197.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8197.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8197.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8197.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.215\"\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 \"publicIPAddresses\": [\r\n \"52.170.113.200\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps8197-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.66.36.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps8197-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\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedoRGRoup2/providers/Microsoft.ApiManagement/service/vifedowebscout\",\r\n \"name\": \"vifedowebscout\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAADZ6k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-22T00:25:43.7662916Z\",\r\n \"gatewayUrl\": \"https://vifedowebscout.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedowebscout-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedowebscout.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedowebscout.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedowebscout.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedowebscout.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedowebscout.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.121.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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs/8=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": \"https://ps9793.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9793-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9793.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9793.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9793.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9793.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9793.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.165.31.150\"\r\n ],\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 },\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\": \"AAAAAAAB3jk=\",\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 }\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 },\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\": \"AAAAAAAEPj4=\",\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 }\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 },\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\": \"AAAAAAAEOxE=\",\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 }\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 },\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\": \"AAAAAAAFx0A=\",\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 }\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 },\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\": \"AAAAAAAFlLQ=\",\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 }\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.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAFlOk=\",\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 }\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 },\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\": \"AAAAAAAGfuM=\",\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 }\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 \"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\": \"2019-01-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": 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\": \"AAAAAAAFFJM=\",\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 }\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 },\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\": \"AAAAAAAFwZo=\",\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.225.20\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAHKyg=\",\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 },\r\n {\r\n \"type\": \"Scm\",\r\n \"hostName\": \"contoso.apim.dev\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\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 \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.136.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.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.Protocols.Server.Http2\": \"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 },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [],\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 },\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\": \"AAAAAAAFlJc=\",\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 }\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 },\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\": \"AAAAAAAFlKE=\",\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 }\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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/APIM-AM-August\",\r\n \"name\": \"APIM-AM-August\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAFtRk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"AMAPIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-01T10:55:21.1250691Z\",\r\n \"gatewayUrl\": \"https://apim-am-august.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-am-august-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-am-august.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-am-august.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-am-august.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-am-august.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-am-august.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"foo.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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.46.109\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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\": \"62643b3d-6158-4ad5-bd68-98f068a86b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\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\": \"AAAAAAAFCYk=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestApiAm\",\r\n \"name\": \"TestApiAm\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAFuRs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPIAm\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-15T14:26:10.3016602Z\",\r\n \"gatewayUrl\": \"https://testapiam.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiam-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiam.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiam.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiam.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiam.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiam.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.174.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 },\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\": \"AAAAAAAFFXs=\",\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 }\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 },\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\": \"AAAAAAAFtxg=\",\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 }\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 },\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\": \"AAAAAAAFlL8=\",\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 }\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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/alzaslondemo\",\r\n \"name\": \"alzaslondemo\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAFlJk=\",\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-03-04T02:21:17.3955917Z\",\r\n \"gatewayUrl\": \"https://alzaslondemo.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslondemo-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslondemo.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslondemo.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslondemo.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslondemo.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslondemo.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.209.32.120\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAGgpM=\",\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\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-30T18:42:02-07:00\",\r\n \"thumbprint\": \"82DAD10143F77272184507073FDE25310A48724F\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi2.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-30T18:42:02-07:00\",\r\n \"thumbprint\": \"82DAD10143F77272184507073FDE25310A48724F\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\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 },\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\": \"AAAAAAAGHHU=\",\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 }\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 },\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\": \"AAAAAAAFlLU=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/vifedouswesttest\",\r\n \"name\": \"vifedouswesttest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAHQ9M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Updating\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2020-04-20T19:40:52.7546112Z\",\r\n \"gatewayUrl\": \"https://vifedouswesttest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedouswesttest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedouswesttest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedouswesttest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedouswesttest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedouswesttest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedouswesttest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.115.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\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAA4W8=\",\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 }\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 },\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\": \"AAAAAAAA7t4=\",\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 }\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\": 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\": \"AAAAAAAA8J0=\",\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 }\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 },\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\": \"AAAAAAADTSU=\",\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 }\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 },\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\": \"AAAAAAADyMc=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-throne\",\r\n \"name\": \"tweiss-throne\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tweiss\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAEPY0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM Test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-09T04:37:52.4052775Z\",\r\n \"gatewayUrl\": \"https://tweiss-throne.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-throne-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-throne.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tweiss-throne.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-throne.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-throne.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-throne.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.117.125.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.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/rpbvttestservicevippool\",\r\n \"name\": \"rpbvttestservicevippool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAEZYY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:43:21.283724Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicevippool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicevippool-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicevippool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicevippool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicevippool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicevippool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicevippool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.22.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\": \"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 },\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\": \"AAAAAAAHChU=\",\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 }\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 },\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\": \"AAAAAAAHFJ8=\",\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 }\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 },\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\": \"AAAAAAAH0rc=\",\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 }\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 },\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\": \"AAAAAAAKO5U=\",\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 }\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 },\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\": \"AAAAAAALymE=\",\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 },\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 }\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 },\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\": \"AAAAAAAKbns=\",\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 }\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 },\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\": \"AAAAAAAAYg4=\",\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 }\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 },\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\": \"AAAAAAAAUos=\",\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 }\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 },\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\": \"AAAAAAAB0MI=\",\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 }\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 \"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 },\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\": \"AAAAAAABQho=\",\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 }\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 },\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\": \"AAAAAAAFlS0=\",\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-02-24T16:58:54.6184557Z\",\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.171.179\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAFlUA=\",\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 }\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 },\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\": \"AAAAAAAFlPE=\",\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 }\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 },\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\": \"AAAAAAAFlRU=\",\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 }\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 },\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\": \"AAAAAAAD/bI=\",\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 }\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 },\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\": \"AAAAAAAFlOw=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tenant-canary-bvts/providers/Microsoft.ApiManagement/service/alzasloneuap\",\r\n \"name\": \"alzasloneuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAFlOc=\",\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-12-05T22:39:46.5215063Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.59.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\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAAm5I=\",\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 }\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 }\r\n ]\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement/service?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudC9zZXJ2aWNlP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae6ad766-ee1a-4d99-b33c-8bc88ff14550"
+ "90473252-fe89-4b59-bfad-f199b06d1194"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5387,45 +8725,59 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "c78f6e6f-a953-4095-ad08-d208cd5c58e2",
- "202f9b19-3968-4725-bb1a-5d82b9201a03",
- "06cd3ec7-3c8f-4056-bd55-9c041201e62e",
- "b10e8f39-8351-4d47-8e48-4a95a7c0deb0",
- "c432d4ea-13e9-4290-97c5-9532efcdb60f",
- "899bddd5-c8a5-4862-bfad-6fed66050e5f",
- "7e911056-6d3d-4e79-9abb-12e862da2ad8",
- "a49a20b7-7508-46e0-838b-1fd47ba79a72",
- "f21a20a3-8b8f-45f1-9710-44436f39d4a3",
- "e062791e-095e-484d-aadf-5d851977edce",
- "b3b35255-4ad6-4dbc-bd40-01aca6b36080",
- "2e09502b-abf2-4ff4-9fdb-17e9fa8efc92",
- "5f3448f2-33fa-42b5-84fd-2de7e38258b5",
- "fec1583c-97b7-4e9d-8ae0-82f20902366c",
- "b2fca62d-2a43-4f65-9032-efeecc4f6bf5",
- "fb7beb6c-ea16-49a0-ba25-a0f65b47ab9d",
- "ba6808be-3476-4c1c-944e-d47441db0e94",
- "f6b97c4b-d443-416f-86bd-02640464a425",
- "528c6478-1fd3-450d-83b8-ec938ae94819",
- "cf48b6ae-28e0-45b4-b691-151f314ae258",
- "a7966f59-002f-4882-a4fd-e57364431f93",
- "e35e9709-5d1c-4394-814d-9d41cbec4626",
- "e3f2d0fb-5258-4a76-8651-939b7b4826a1",
- "9f65a9d5-1f51-4c9c-b251-c696ebd07019",
- "dc341870-887b-426d-bdcd-b5ca7f228b94",
- "22c959bb-94c4-4d6b-86dc-20eb44c6512f",
- "ad2e2c59-cb24-4493-8d5c-53c8254a92f6"
+ "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"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11934"
],
"x-ms-request-id": [
- "d3716cf3-8172-4f64-90eb-d391e22b1e69"
+ "f478ff1a-02e1-46d0-a2aa-9ffd79586772"
],
"x-ms-correlation-request-id": [
- "d3716cf3-8172-4f64-90eb-d391e22b1e69"
+ "f478ff1a-02e1-46d0-a2aa-9ffd79586772"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205738Z:d3716cf3-8172-4f64-90eb-d391e22b1e69"
+ "WESTUS:20210715T100238Z:f478ff1a-02e1-46d0-a2aa-9ffd79586772"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5434,7 +8786,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:57:38 GMT"
+ "Thu, 15 Jul 2021 10:02:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5443,29 +8795,29 @@
"-1"
],
"Content-Length": [
- "184513"
+ "359139"
]
},
- "ResponseBody": "{\r\n \"value\": [\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\": \"AAAAAAAAX7w=\",\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 }\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 },\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\": \"AAAAAAABuEQ=\",\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 }\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 },\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\": \"AAAAAAABAUk=\",\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 }\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 },\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\": \"AAAAAAAAu7k=\",\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 }\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 },\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\": \"AAAAAAAA5cU=\",\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 }\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 },\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\": \"AAAAAAABKlI=\",\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 }\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 },\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\": \"AAAAAAABOpg=\",\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 }\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 },\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\": \"AAAAAAAAxfs=\",\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 }\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 },\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\": \"AAAAAAAAsQI=\",\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 }\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 },\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\": \"AAAAAAABL5Y=\",\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 }\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 },\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\": \"AAAAAAABUeI=\",\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 }\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 },\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\": \"AAAAAAABZug=\",\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 }\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 },\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\": \"AAAAAAAEcdQ=\",\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 }\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 },\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\": \"AAAAAAAEcak=\",\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\": \"2019-04-27T05:30:48.0387377Z\",\r\n \"gatewayUrl\": \"https://gleb-northcentraltest.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-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 }\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 },\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\": \"AAAAAAAEniE=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-North-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicetestpool\",\r\n \"name\": \"rpbvttestservicetestpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"North Central US\",\r\n \"etag\": \"AAAAAAAEnho=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"apimanagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-09-27T03:54:47.7889108Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicetestpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicetestpool-northcentralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicetestpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicetestpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicetestpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicetestpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicetestpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.217.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\": \"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 },\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\": \"AAAAAAAEcbk=\",\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 }\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 },\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\": \"AAAAAAACCI0=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/mkimtest/providers/Microsoft.ApiManagement/service/mkimconsumptionhostnametest\",\r\n \"name\": \"mkimconsumptionhostnametest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vlvinogr\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"AAAAAAACDKo=\",\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\": \"2019-06-04T15:13:52.423024Z\",\r\n \"gatewayUrl\": \"https://mkimconsumptionhostnametest.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\": \"mkimconsumptionhostnametest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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 },\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\": \"AAAAAAACTr8=\",\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 }\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 },\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\": \"AAAAAAACT8M=\",\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 }\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 },\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\": \"AAAAAAACVA8=\",\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 }\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 },\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\": \"AAAAAAACeBE=\",\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\": true\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\": 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\": \"AAAAAAACJlk=\",\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 }\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 },\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 \"Owner\": \"glfeokti\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"etag\": \"AAAAAAACUac=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"glfeokti@microsoft.com\",\r\n \"publisherName\": \"adasdasda\",\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 }\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 },\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\": \"AAAAAAACUaU=\",\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 }\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\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/glebrg/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\": \"AAAAAAACUa0=\",\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 }\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 },\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\": \"AAAAAAACUas=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-Central-US/providers/Microsoft.ApiManagement/service/rpbvttestservicedefaultpool\",\r\n \"name\": \"rpbvttestservicedefaultpool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAADSWM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"sasolank@microsoft.com\",\r\n \"publisherName\": \"Samirs Company\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:42:16.6832196Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicedefaultpool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicedefaultpool-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicedefaultpool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicedefaultpool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicedefaultpool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicedefaultpool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicedefaultpool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.166.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\": \"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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps1095/providers/Microsoft.ApiManagement/service/ps3854\",\r\n \"name\": \"ps3854\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEcFY=\",\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\": \"2020-04-10T22:52:15.0395324Z\",\r\n \"gatewayUrl\": \"https://ps3854.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps3854-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps3854.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps3854.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps3854.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps3854.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps3854.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.35.120\"\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 \"publicIPAddresses\": [\r\n \"13.82.193.6\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps3854-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.44.129.170\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps3854-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\": 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\": \"0e38b926-dbf0-480e-92e3-07cba7559a15\",\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621\",\r\n \"name\": \"ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtEE=\",\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\": \"2020-04-20T20:12:18.6916233Z\",\r\n \"gatewayUrl\": \"https://ps6621.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6621-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6621.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6621.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6621.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6621.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6621.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.149.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\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": 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\": \"AAAAAAADelU=\",\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 }\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 },\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\": \"AAAAAAAEIgU=\",\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 }\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\": 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\": \"AAAAAAAC6JA=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/vifedordptest\",\r\n \"name\": \"vifedordptest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEmjM=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-16T22:58:03.9908914Z\",\r\n \"gatewayUrl\": \"https://vifedordptest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedordptest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedordptest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedordptest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedordptest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedordptest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedordptest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.89.55.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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps3418/providers/Microsoft.ApiManagement/service/ps9048\",\r\n \"name\": \"ps9048\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEaP4=\",\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\": \"2020-04-09T18:36:58.5960335Z\",\r\n \"gatewayUrl\": \"https://ps9048.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9048-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9048.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9048.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9048.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9048.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9048.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.232.68\"\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 \"publicIPAddresses\": [\r\n \"13.92.180.5\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps9048-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"104.44.135.48\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps9048-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\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/vifedotest\",\r\n \"name\": \"vifedotest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtC4=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-04-03T19:37:33.016904Z\",\r\n \"gatewayUrl\": \"https://vifedotest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedotest-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedotest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedotest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedotest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedotest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedotest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.113.201.104\"\r\n ],\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.Protocols.Server.Http2\": \"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 },\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7013/providers/Microsoft.ApiManagement/service/ps8197\",\r\n \"name\": \"ps8197\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEaRo=\",\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\": \"2020-04-09T19:00:34.9730218Z\",\r\n \"gatewayUrl\": \"https://ps8197.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps8197-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps8197.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps8197.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps8197.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps8197.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps8197.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.101.116.215\"\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 \"publicIPAddresses\": [\r\n \"52.170.113.200\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps8197-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.66.36.31\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps8197-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\": null\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/vifedoRGRoup2/providers/Microsoft.ApiManagement/service/vifedowebscout\",\r\n \"name\": \"vifedowebscout\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAADZ6k=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2020-01-22T00:25:43.7662916Z\",\r\n \"gatewayUrl\": \"https://vifedowebscout.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedowebscout-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedowebscout.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedowebscout.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedowebscout.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedowebscout.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedowebscout.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.122.121.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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs/8=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": \"https://ps9793.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9793-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9793.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9793.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9793.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9793.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9793.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.165.31.150\"\r\n ],\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 },\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\": \"AAAAAAAB3jk=\",\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 }\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 },\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\": \"AAAAAAAEPj4=\",\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 }\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 },\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\": \"AAAAAAAEOxE=\",\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 }\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 },\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\": \"AAAAAAAFx0A=\",\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 }\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 },\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\": \"AAAAAAAFlLQ=\",\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 }\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.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAFlOk=\",\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 }\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 },\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\": \"AAAAAAAGfuM=\",\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 }\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 \"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\": \"2019-01-01\"\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": 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\": \"AAAAAAAFFJM=\",\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 }\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 },\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\": \"AAAAAAAFwZo=\",\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.225.20\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAHKyg=\",\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 },\r\n {\r\n \"type\": \"Scm\",\r\n \"hostName\": \"contoso.apim.dev\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\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 \"defaultSslBinding\": false\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.83.136.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.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.Protocols.Server.Http2\": \"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 },\r\n \"virtualNetworkType\": \"None\",\r\n \"certificates\": [],\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 },\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\": \"AAAAAAAFlJc=\",\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 }\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 },\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\": \"AAAAAAAFlKE=\",\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 }\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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/APIM-AM-August\",\r\n \"name\": \"APIM-AM-August\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAFtRk=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"AMAPIM\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-08-01T10:55:21.1250691Z\",\r\n \"gatewayUrl\": \"https://apim-am-august.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://apim-am-august-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://apim-am-august.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://apim-am-august.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://apim-am-august.management.azure-api.net\",\r\n \"scmUrl\": \"https://apim-am-august.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"apim-am-august.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"DeveloperPortal\",\r\n \"hostName\": \"foo.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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.46.109\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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\": \"62643b3d-6158-4ad5-bd68-98f068a86b69\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\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\": \"AAAAAAAFCYk=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-West-US/providers/Microsoft.ApiManagement/service/TestApiAm\",\r\n \"name\": \"TestApiAm\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"v-aswmoh\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAFuRs=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"v-aswmoh@microsoft.com\",\r\n \"publisherName\": \"TestAPIAm\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-15T14:26:10.3016602Z\",\r\n \"gatewayUrl\": \"https://testapiam.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://testapiam-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://testapiam.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://testapiam.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://testapiam.management.azure-api.net\",\r\n \"scmUrl\": \"https://testapiam.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"testapiam.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.174.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 },\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\": \"AAAAAAAFFXs=\",\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 }\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 },\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\": \"AAAAAAAFtxg=\",\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 }\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 },\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\": \"AAAAAAAFlL8=\",\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 }\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\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/alzaslondemo\",\r\n \"name\": \"alzaslondemo\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAFlJk=\",\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-03-04T02:21:17.3955917Z\",\r\n \"gatewayUrl\": \"https://alzaslondemo.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzaslondemo-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzaslondemo.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzaslondemo.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzaslondemo.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzaslondemo.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzaslondemo.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.209.32.120\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAGgpM=\",\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\": false\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-30T18:42:02-07:00\",\r\n \"thumbprint\": \"82DAD10143F77272184507073FDE25310A48724F\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\r\n },\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"gatewaykjoshi2.current.int-azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": \"https://apim-global-test.vault.azure.net/secrets/api-current-tenant-ssl\",\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": {\r\n \"expiry\": \"2021-03-30T18:42:02-07:00\",\r\n \"thumbprint\": \"82DAD10143F77272184507073FDE25310A48724F\",\r\n \"subject\": \"CN=*.current.int-azure-api.net\"\r\n },\r\n \"defaultSslBinding\": true\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 },\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\": \"AAAAAAAGHHU=\",\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 }\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 },\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\": \"AAAAAAAFlLU=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ApiManagement-ACIS-INT/providers/Microsoft.ApiManagement/service/vifedouswesttest\",\r\n \"name\": \"vifedouswesttest\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"vifedo\"\r\n },\r\n \"location\": \"West US\",\r\n \"etag\": \"AAAAAAAHQ9M=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"vifedo@microsoft.com\",\r\n \"publisherName\": \"test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Updating\",\r\n \"targetProvisioningState\": \"Updating\",\r\n \"createdAtUtc\": \"2020-04-20T19:40:52.7546112Z\",\r\n \"gatewayUrl\": \"https://vifedouswesttest.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://vifedouswesttest-westus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://vifedouswesttest.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://vifedouswesttest.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://vifedouswesttest.management.azure-api.net\",\r\n \"scmUrl\": \"https://vifedouswesttest.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"vifedouswesttest.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.42.115.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\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAA4W8=\",\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 }\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 },\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\": \"AAAAAAAA7t4=\",\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 }\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\": 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\": \"AAAAAAAA8J0=\",\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 }\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 },\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\": \"AAAAAAADTSU=\",\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 }\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 },\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\": \"AAAAAAADyMc=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tweiss-temporary/providers/Microsoft.ApiManagement/service/tweiss-throne\",\r\n \"name\": \"tweiss-throne\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"tweiss\"\r\n },\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAEPY0=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"tweiss@microsoft.com\",\r\n \"publisherName\": \"APIM Test\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2019-07-09T04:37:52.4052775Z\",\r\n \"gatewayUrl\": \"https://tweiss-throne.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://tweiss-throne-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://tweiss-throne.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://tweiss-throne.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://tweiss-throne.management.azure-api.net\",\r\n \"scmUrl\": \"https://tweiss-throne.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"tweiss-throne.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.117.125.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.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/Api-Default-East-US/providers/Microsoft.ApiManagement/service/rpbvttestservicevippool\",\r\n \"name\": \"rpbvttestservicevippool\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAEZYY=\",\r\n \"properties\": {\r\n \"publisherEmail\": \"kjoshi@microsoft.com\",\r\n \"publisherName\": \"ApiManagement\",\r\n \"notificationSenderEmail\": \"apimgmt-noreply@mail.windowsazure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"targetProvisioningState\": \"\",\r\n \"createdAtUtc\": \"2015-07-10T17:43:21.283724Z\",\r\n \"gatewayUrl\": \"https://rpbvttestservicevippool.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://rpbvttestservicevippool-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://rpbvttestservicevippool.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://rpbvttestservicevippool.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://rpbvttestservicevippool.management.azure-api.net\",\r\n \"scmUrl\": \"https://rpbvttestservicevippool.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"rpbvttestservicevippool.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"23.96.22.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\": \"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 },\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\": \"AAAAAAAHChU=\",\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 }\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 },\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\": \"AAAAAAAHFJ8=\",\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 }\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 },\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\": \"AAAAAAAH0rc=\",\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 }\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 },\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\": \"AAAAAAAKO5U=\",\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 }\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 },\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\": \"AAAAAAALymE=\",\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 },\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456\",\r\n \"name\": \"ps3456\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAQc44=\",\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\": \"2020-04-20T20:56:34.0401968Z\",\r\n \"gatewayUrl\": \"https://ps3456.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\": \"ps3456.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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 },\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\": \"AAAAAAAKbns=\",\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 }\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 },\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\": \"AAAAAAAAYg4=\",\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 }\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 },\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\": \"AAAAAAAAUos=\",\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 }\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 },\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\": \"AAAAAAAB0MI=\",\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 }\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 \"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 },\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\": \"AAAAAAABQho=\",\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 }\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 },\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\": \"AAAAAAAFlS0=\",\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-02-24T16:58:54.6184557Z\",\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 }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.180.171.179\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"additionalLocations\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"customProperties\": {\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAFlUA=\",\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 }\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 },\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\": \"AAAAAAAFlPE=\",\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 }\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 },\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\": \"AAAAAAAFlRU=\",\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 }\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 },\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\": \"AAAAAAAD/bI=\",\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 }\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 },\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\": \"AAAAAAAFlOw=\",\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 }\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 },\r\n {\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/tenant-canary-bvts/providers/Microsoft.ApiManagement/service/alzasloneuap\",\r\n \"name\": \"alzasloneuap\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {\r\n \"Owner\": \"alzaslon\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"etag\": \"AAAAAAAFlOc=\",\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-12-05T22:39:46.5215063Z\",\r\n \"gatewayUrl\": \"https://alzasloneuap.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://alzasloneuap-centraluseuap-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://alzasloneuap.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://alzasloneuap.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://alzasloneuap.management.azure-api.net\",\r\n \"scmUrl\": \"https://alzasloneuap.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"alzasloneuap.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"104.208.59.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\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Ciphers.TripleDes168\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls10\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Tls11\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Security.Backend.Protocols.Ssl30\": \"False\",\r\n \"Microsoft.WindowsAzure.ApiManagement.Gateway.Protocols.Server.Http2\": \"False\"\r\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 },\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\": \"AAAAAAAAm5I=\",\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 }\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 }\r\n ]\r\n}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM0NTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"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": [
- "5be1b200-b64b-49d3-86b7-a8351f796585"
+ "05d50a40-1a78-4d3a-a239-bd1690e523e2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5482,10 +8834,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAQc4c=\""
+ "\"AAAAAABjBsc=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456/operationresults/d2VzdGV1cm9wZTpwczM0NTZfQWN0X2I3ZjY4Mjlk?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9BY3RfNDQzYTEzYzM=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -5494,8 +8846,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86340174-fd69-4cc3-876a-f601ecb5e110",
- "61805fdb-957e-486c-9560-7ed1de8c4e0a"
+ "84f2ef6a-fa99-404b-89c0-6897820c6801",
+ "b8d0925e-0912-4702-852c-d9fc2b4449d2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -5504,19 +8856,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "fd6c0989-a586-4355-9ba7-81fb5cc98f7f"
+ "86156ec7-2d2a-4e04-8463-ba34b8dcc193"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205636Z:fd6c0989-a586-4355-9ba7-81fb5cc98f7f"
+ "WESTUS:20210715T100136Z:86156ec7-2d2a-4e04-8463-ba34b8dcc193"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:56:35 GMT"
+ "Thu, 15 Jul 2021 10:01:36 GMT"
],
"Content-Length": [
- "1177"
+ "1254"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5525,20 +8877,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456\",\r\n \"name\": \"ps3456\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAQc4c=\",\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\": \"2020-04-20T20:56:34.0401968Z\",\r\n \"gatewayUrl\": null,\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\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456/operationresults/d2VzdGV1cm9wZTpwczM0NTZfQWN0X2I3ZjY4Mjlk?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM0NTYvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEdWMWNtOXdaVHB3Y3pNME5UWmZRV04wWDJJM1pqWTRNamxrP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784/operationresults/d2VzdGV1cm9wZTpwczc4NF9BY3RfNDQzYTEzYzM=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4NC9vcGVyYXRpb25yZXN1bHRzL2QyVnpkR1YxY205d1pUcHdjemM0TkY5QlkzUmZORFF6WVRFell6TT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "05d50a40-1a78-4d3a-a239-bd1690e523e2"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5552,28 +8907,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "659418e7-0d15-4d59-a8d0-32e95fecd723"
+ "dba801a4-611f-4628-9569-c5e86aae2430"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11933"
+ "11935"
],
"x-ms-correlation-request-id": [
- "0d4bb5d9-b907-4f39-b465-bafbf2db5efa"
+ "d54a78cf-448e-4d6d-9f50-c62a2ea3da4c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205737Z:0d4bb5d9-b907-4f39-b465-bafbf2db5efa"
+ "WESTUS:20210715T100237Z:d54a78cf-448e-4d6d-9f50-c62a2ea3da4c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:57:36 GMT"
+ "Thu, 15 Jul 2021 10:02:36 GMT"
],
"Content-Length": [
- "1712"
+ "1745"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5582,26 +8937,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456\",\r\n \"name\": \"ps3456\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"West Europe\",\r\n \"etag\": \"AAAAAAAQc44=\",\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\": \"2020-04-20T20:56:34.0401968Z\",\r\n \"gatewayUrl\": \"https://ps3456.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\": \"ps3456.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17200486-0e57-4e92-a4a3-e1a588f41476"
+ "2cf73c82-37d4-4659-a250-93274851d454"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5612,7 +8967,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9UZXJtX2E5YzAyZWM3?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -5621,7 +8976,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "792717d9-d00e-41a3-93e4-659e94c6a33c"
+ "c4147651-ab22-40a1-9048-81d5e47f0a39"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -5630,19 +8985,19 @@
"14999"
],
"x-ms-correlation-request-id": [
- "a189ef5d-1cf2-4394-88fe-5dda032182fc"
+ "41a57e5f-2db3-4685-81f6-11a38fbb1fc7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205739Z:a189ef5d-1cf2-4394-88fe-5dda032182fc"
+ "WESTUS:20210715T100239Z:41a57e5f-2db3-4685-81f6-11a38fbb1fc7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:57:39 GMT"
+ "Thu, 15 Jul 2021 10:02:39 GMT"
],
"Content-Length": [
- "2076"
+ "2111"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5651,20 +9006,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621\",\r\n \"name\": \"ps6621\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtEI=\",\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\": \"2020-04-20T20:12:18.6916233Z\",\r\n \"gatewayUrl\": \"https://ps6621.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps6621-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps6621.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps6621.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps6621.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps6621.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps6621.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.173.149.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\": \"Basic\",\r\n \"capacity\": 2\r\n },\r\n \"identity\": null\r\n}",
+ "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}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9UZXJtX2E5YzAyZWM3?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOVVaWEp0WDJFNVl6QXlaV00zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOVVaWEp0WHpRMllUQm1NRFU1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5675,7 +9033,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9UZXJtX2E5YzAyZWM3?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -5684,25 +9042,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ff113b66-5436-4d79-acd9-8e2c0c8ddd9f"
+ "e5463b9f-57ff-4800-a41e-a2aaf782ccd9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11932"
],
"x-ms-correlation-request-id": [
- "a95059a4-8a15-47d2-8cd8-59f08391663c"
+ "160168d6-dbc0-4e57-84ac-3675fe78bf2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205839Z:a95059a4-8a15-47d2-8cd8-59f08391663c"
+ "WESTUS:20210715T100340Z:160168d6-dbc0-4e57-84ac-3675fe78bf2a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:58:39 GMT"
+ "Thu, 15 Jul 2021 10:03:39 GMT"
],
"Expires": [
"-1"
@@ -5715,16 +9073,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9UZXJtX2E5YzAyZWM3?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOVVaWEp0WDJFNVl6QXlaV00zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOVVaWEp0WHpRMllUQm1NRFU1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5738,25 +9099,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "641d41f1-5187-4eef-9fe0-1ed2d2d0fe5c"
+ "27db0f54-cf47-44d5-a46a-15b71a0f32c2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11929"
+ "11931"
],
"x-ms-correlation-request-id": [
- "12e66766-f513-4512-b3c7-32a3825e80e3"
+ "a9997d45-90dc-4a11-b694-fbe6c913a6e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205940Z:12e66766-f513-4512-b3c7-32a3825e80e3"
+ "WESTUS:20210715T100440Z:a9997d45-90dc-4a11-b694-fbe6c913a6e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:59:39 GMT"
+ "Thu, 15 Jul 2021 10:04:40 GMT"
],
"Expires": [
"-1"
@@ -5769,16 +9130,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps6621/operationresults/Y2VudHJhbHVzOnBzNjYyMV9UZXJtX2E5YzAyZWM3?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczY2MjEvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TmpZeU1WOVVaWEp0WDJFNVl6QXlaV00zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps4154/operationresults/Y2VudHJhbHVzOnBzNDE1NF9UZXJtXzQ2YTBmMDU5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczQxNTQvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TkRFMU5GOVVaWEp0WHpRMllUQm1NRFU1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5792,25 +9156,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ed76532-d1f1-4f8c-b076-d7dd2c26eda0"
+ "f4e35e32-6f03-40b0-9ffb-81b9f4596120"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11928"
+ "11930"
],
"x-ms-correlation-request-id": [
- "cb91f38a-f941-4472-a1f3-8b6bcb0cd587"
+ "32474980-34e4-4768-82c3-585828fe0f3a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205940Z:cb91f38a-f941-4472-a1f3-8b6bcb0cd587"
+ "WESTUS:20210715T100440Z:32474980-34e4-4768-82c3-585828fe0f3a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:59:39 GMT"
+ "Thu, 15 Jul 2021 10:04:40 GMT"
],
"Expires": [
"-1"
@@ -5823,22 +9187,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8ff8a1d-71eb-40dc-adab-44bb78dd0183"
+ "2cf73c82-37d4-4659-a250-93274851d454"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5849,7 +9213,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19UZXJtXzY5YTMyNTM4?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -5858,7 +9222,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ddb79ee8-c798-4d9e-ad2d-92004d88bb05"
+ "957d6942-0fb6-45bd-a516-9691ff577cc3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -5867,19 +9231,19 @@
"14998"
],
"x-ms-correlation-request-id": [
- "8d89bff8-52f7-4e33-b7b1-24f8f41d0f86"
+ "c77adba6-7f38-4ccb-9099-ab2ddb7555a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T205940Z:8d89bff8-52f7-4e33-b7b1-24f8f41d0f86"
+ "WESTUS:20210715T100441Z:c77adba6-7f38-4ccb-9099-ab2ddb7555a2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 20:59:40 GMT"
+ "Thu, 15 Jul 2021 10:04:40 GMT"
],
"Content-Length": [
- "2063"
+ "2100"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -5888,20 +9252,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793\",\r\n \"name\": \"ps9793\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEtEc=\",\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\": \"2020-04-20T19:38:06.2345943Z\",\r\n \"gatewayUrl\": \"https://ps9793.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps9793-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps9793.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps9793.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps9793.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps9793.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps9793.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"52.165.31.150\"\r\n ],\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}",
+ "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}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19UZXJtXzY5YTMyNTM4?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOVVaWEp0WHpZNVlUTXlOVE00P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOVVaWEp0WDJZME56Vm1PV1UwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5912,7 +9279,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19UZXJtXzY5YTMyNTM4?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -5921,25 +9288,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c4055897-0341-43d9-bc36-2c8c43339fc1"
+ "445add2b-b8ab-4f12-adcb-cea6b84dd937"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11932"
+ "11935"
],
"x-ms-correlation-request-id": [
- "3c5dcd7d-4e1b-4ed2-a97f-83859c849fb5"
+ "be70eb69-58d6-44f6-89ae-a366b1664321"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210041Z:3c5dcd7d-4e1b-4ed2-a97f-83859c849fb5"
+ "WESTUS:20210715T100541Z:be70eb69-58d6-44f6-89ae-a366b1664321"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:00:40 GMT"
+ "Thu, 15 Jul 2021 10:05:40 GMT"
],
"Expires": [
"-1"
@@ -5952,16 +9319,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19UZXJtXzY5YTMyNTM4?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOVVaWEp0WHpZNVlUTXlOVE00P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOVVaWEp0WDJZME56Vm1PV1UwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -5975,25 +9345,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "50b5f79e-17b8-41f4-a6d7-bcf94aa9a71e"
+ "cdf35546-7e27-4fcf-8da5-f3403eec294d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11931"
+ "11934"
],
"x-ms-correlation-request-id": [
- "222b0574-3db5-41b7-b4d7-d22c4c61a509"
+ "6cf07b23-3e7d-47e2-9483-806e30078fe6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210141Z:222b0574-3db5-41b7-b4d7-d22c4c61a509"
+ "WESTUS:20210715T100641Z:6cf07b23-3e7d-47e2-9483-806e30078fe6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:01:40 GMT"
+ "Thu, 15 Jul 2021 10:06:41 GMT"
],
"Expires": [
"-1"
@@ -6006,16 +9376,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps9793/operationresults/Y2VudHJhbHVzOnBzOTc5M19UZXJtXzY5YTMyNTM4?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczk3OTMvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T1RjNU0xOVVaWEp0WHpZNVlUTXlOVE00P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps8286/operationresults/Y2VudHJhbHVzOnBzODI4Nl9UZXJtX2Y0NzVmOWU0?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczgyODYvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6T0RJNE5sOVVaWEp0WDJZME56Vm1PV1UwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -6029,25 +9402,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "14cde510-6575-4dce-8583-69be8637f971"
+ "51b9d8c3-c3a3-4933-b66c-243fd6248144"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11930"
+ "11933"
],
"x-ms-correlation-request-id": [
- "39818641-050d-4cde-a258-9ab8cd144bc0"
+ "e5cdd639-cb67-43a3-b412-32e73a128ad0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210141Z:39818641-050d-4cde-a258-9ab8cd144bc0"
+ "WESTUS:20210715T100641Z:e5cdd639-cb67-43a3-b412-32e73a128ad0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:01:40 GMT"
+ "Thu, 15 Jul 2021 10:06:41 GMT"
],
"Expires": [
"-1"
@@ -6060,22 +9433,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps7319/providers/Microsoft.ApiManagement/service/ps3456?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNzMxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczM0NTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps8137/providers/Microsoft.ApiManagement/service/ps784?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzODEzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczc4ND9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb17cdcf-ae3c-42f7-bda3-946719a6e40a"
+ "2cf73c82-37d4-4659-a250-93274851d454"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -6085,11 +9458,17 @@
"Pragma": [
"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"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "146021cd-bca3-418f-9d2d-bc2250565e18"
+ "1a300f39-1c02-4cd3-81df-c2f6cd806e99"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -6098,41 +9477,161 @@
"14997"
],
"x-ms-correlation-request-id": [
- "4e1e208a-6872-41f5-b30f-2242dc866eaf"
+ "9918ecc6-915a-419c-9e66-8e13ad5c51e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T100643Z:9918ecc6-915a-419c-9e66-8e13ad5c51e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 10:06:43 GMT"
+ ],
+ "Content-Length": [
+ "1753"
+ ],
+ "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/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}",
+ "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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
+ "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": [
+ "5670e2a3-fe6b-4960-a9cb-76ec1b814d6e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11932"
+ ],
+ "x-ms-correlation-request-id": [
+ "26954d76-bec6-40c9-a207-0c8fbd6baeef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T100743Z:26954d76-bec6-40c9-a207-0c8fbd6baeef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 10:07:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2cf73c82-37d4-4659-a250-93274851d454"
+ ],
+ "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": [
+ "eaed15f9-c50e-4762-88b9-3e929493796f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11931"
+ ],
+ "x-ms-correlation-request-id": [
+ "42178f5b-ee7a-49cf-ae5f-760f1298f761"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210208Z:4e1e208a-6872-41f5-b30f-2242dc866eaf"
+ "WESTUS:20210715T100743Z:42178f5b-ee7a-49cf-ae5f-760f1298f761"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:02:08 GMT"
+ "Thu, 15 Jul 2021 10:07:43 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
- "StatusCode": 204
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps7319?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNzMxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps8137?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzODEzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84e11b86-bb5d-4f7a-af72-8fa913914451"
+ "478120a9-84d4-463e-a2a3-db240b297ef8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6143,7 +9642,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMTktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6152,13 +9651,13 @@
"14999"
],
"x-ms-request-id": [
- "fca36240-870b-4ed9-bd2a-65e687934c4e"
+ "ed63e8b0-e025-4d1b-920b-64d8a016ab1b"
],
"x-ms-correlation-request-id": [
- "fca36240-870b-4ed9-bd2a-65e687934c4e"
+ "ed63e8b0-e025-4d1b-920b-64d8a016ab1b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210210Z:fca36240-870b-4ed9-bd2a-65e687934c4e"
+ "WESTUS:20210715T100745Z:ed63e8b0-e025-4d1b-920b-64d8a016ab1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6167,7 +9666,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:02:10 GMT"
+ "Thu, 15 Jul 2021 10:07:45 GMT"
],
"Expires": [
"-1"
@@ -6180,16 +9679,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMTktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1Ua3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6200,7 +9699,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMTktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6209,13 +9708,13 @@
"11999"
],
"x-ms-request-id": [
- "47c0cbd8-1ede-40cf-bb67-ab92d472f08d"
+ "8aeb1e94-d149-4df3-a345-ed9884ebc5dc"
],
"x-ms-correlation-request-id": [
- "47c0cbd8-1ede-40cf-bb67-ab92d472f08d"
+ "8aeb1e94-d149-4df3-a345-ed9884ebc5dc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210225Z:47c0cbd8-1ede-40cf-bb67-ab92d472f08d"
+ "WESTUS:20210715T100800Z:8aeb1e94-d149-4df3-a345-ed9884ebc5dc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6224,7 +9723,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:02:25 GMT"
+ "Thu, 15 Jul 2021 10:08:00 GMT"
],
"Expires": [
"-1"
@@ -6237,16 +9736,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMTktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1Ua3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6256,17 +9755,23 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "55941501-bcd2-4e2b-83a5-63bd25c44a4e"
+ "80c2d617-a31d-4c8c-8dd6-4cf52c131993"
],
"x-ms-correlation-request-id": [
- "55941501-bcd2-4e2b-83a5-63bd25c44a4e"
+ "80c2d617-a31d-4c8c-8dd6-4cf52c131993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210241Z:55941501-bcd2-4e2b-83a5-63bd25c44a4e"
+ "WESTUS:20210715T100815Z:80c2d617-a31d-4c8c-8dd6-4cf52c131993"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6275,7 +9780,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:02:40 GMT"
+ "Thu, 15 Jul 2021 10:08:15 GMT"
],
"Expires": [
"-1"
@@ -6285,19 +9790,19 @@
]
},
"ResponseBody": "",
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzczMTktQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjek1Ua3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6311,13 +9816,64 @@
"11997"
],
"x-ms-request-id": [
- "dcc6be0e-dff2-40f3-acbc-886dbcfba455"
+ "44ce4188-39ab-493a-ab03-d75eddf44fb3"
+ ],
+ "x-ms-correlation-request-id": [
+ "44ce4188-39ab-493a-ab03-d75eddf44fb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210715T100830Z:44ce4188-39ab-493a-ab03-d75eddf44fb3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 15 Jul 2021 10:08:30 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzgxMzctQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpneE16Y3RRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "ecc8659b-5f8c-467e-8f2b-e27789bb4102"
],
"x-ms-correlation-request-id": [
- "dcc6be0e-dff2-40f3-acbc-886dbcfba455"
+ "ecc8659b-5f8c-467e-8f2b-e27789bb4102"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T210241Z:dcc6be0e-dff2-40f3-acbc-886dbcfba455"
+ "WESTUS:20210715T100830Z:ecc8659b-5f8c-467e-8f2b-e27789bb4102"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6326,7 +9882,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 21:02:40 GMT"
+ "Thu, 15 Jul 2021 10:08:30 GMT"
],
"Expires": [
"-1"
@@ -6341,10 +9897,10 @@
],
"Names": {
"Test-CrudApiManagement": [
- "ps7319",
- "ps9793",
- "ps6621",
- "ps3456"
+ "ps8137",
+ "ps8286",
+ "ps4154",
+ "ps784"
]
},
"Variables": {
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 ae06cef8235c..794852d1aecf 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,88 +1,28 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/providers/Microsoft.ApiManagement?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXBpTWFuYWdlbWVudD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "4c0fe4f6-bad3-4b1e-8b02-4f585cfbcbec"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.27817.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-request-id": [
- "c1703c80-fc1e-4071-ad3f-c561faeb7c8d"
- ],
- "x-ms-correlation-request-id": [
- "c1703c80-fc1e-4071-ad3f-c561faeb7c8d"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200420T184851Z:c1703c80-fc1e-4071-ad3f-c561faeb7c8d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 20 Apr 2020 18:48:50 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "2341"
- ]
- },
- "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 \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\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 \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Switzerland West\"\r\n ],\r\n \"apiVersions\": [\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\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 \"apiVersions\": [\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 \"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 \"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 \"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 \"registrationState\": \"Registered\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps2974?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMjk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4150?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDE1MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "091769c0-7240-41f4-a720-5980f0f35406"
+ "decd20c8-e9cf-4bca-9e41-3ddc9ed0e946"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "32"
+ "31"
]
},
"ResponseHeaders": {
@@ -96,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "24fd536f-e976-48f5-aef7-327d737fd8fc"
+ "994708cd-e2dc-4c60-a3b3-764d9bf3b5bb"
],
"x-ms-correlation-request-id": [
- "24fd536f-e976-48f5-aef7-327d737fd8fc"
+ "994708cd-e2dc-4c60-a3b3-764d9bf3b5bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184852Z:24fd536f-e976-48f5-aef7-327d737fd8fc"
+ "WESTCENTRALUS:20210716T201000Z:994708cd-e2dc-4c60-a3b3-764d9bf3b5bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,10 +51,10 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:48:52 GMT"
+ "Fri, 16 Jul 2021 20:09:59 GMT"
],
"Content-Length": [
- "168"
+ "166"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -123,32 +63,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974\",\r\n \"name\": \"ps2974\",\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/ps4150\",\r\n \"name\": \"ps4150\",\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/ps2974/providers/Microsoft.ApiManagement/service/ps2198?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"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\": 1\r\n }\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n }\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\": \"Central US\"\r\n}",
+ "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": [
- "33dc6bb8-0dce-4173-8906-ec80d376fbd7"
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "830"
+ "1166"
]
},
"ResponseHeaders": {
@@ -159,10 +99,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAEszk=\""
+ "\"AAAAAAAT7+A=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -171,8 +111,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3401e6e3-050c-4e72-8e3d-d2f42b8a8fe9",
- "c8c22fe6-3936-46f8-a370-254e136ce08c"
+ "9b0dd363-7f07-40a6-8dd5-670a7dcaa295",
+ "dcf9394a-8e9a-4973-af47-101aed55d04e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -181,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a37994ec-82a5-493b-9e26-ef429d137174"
+ "7c74fe42-0c9c-4cf5-abee-c51594d30bae"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184856Z:a37994ec-82a5-493b-9e26-ef429d137174"
+ "WESTUS:20210716T201004Z:7c74fe42-0c9c-4cf5-abee-c51594d30bae"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:48:56 GMT"
+ "Fri, 16 Jul 2021 20:10:03 GMT"
],
"Content-Length": [
- "1843"
+ "1971"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -202,32 +142,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198\",\r\n \"name\": \"ps2198\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEszk=\",\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\": \"2020-04-20T18:48:55.024542Z\",\r\n \"gatewayUrl\": null,\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\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": null,\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": null,\r\n \"disableGateway\": false\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\": 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}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"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\": \"ps2198.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 }\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 \"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\": \"SystemAssigned\"\r\n },\r\n \"location\": \"Central 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\": \"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1213913-d551-4842-bd6c-633856dcdcb1"
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1547"
+ "2008"
]
},
"ResponseHeaders": {
@@ -238,10 +178,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAEs20=\""
+ "\"AAAAAAAT8Bg=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -250,8 +190,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e534f3d-8263-49f2-8349-6b3fc750ba96",
- "d54a1f13-8f1d-4d86-82be-2dff01ed2d09"
+ "c4e53d48-6c66-4206-954f-11fedaf17978",
+ "5be089f7-3b9d-4f46-bb5a-1e0adaa55c0f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -260,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "e4cf8783-76f6-4116-8700-6a69e0fd6f3a"
+ "222e0579-5da3-4160-8d22-b867d9fcd188"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191507Z:e4cf8783-76f6-4116-8700-6a69e0fd6f3a"
+ "WESTUS:20210716T204219Z:222e0579-5da3-4160-8d22-b867d9fcd188"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:15:06 GMT"
+ "Fri, 16 Jul 2021 20:42:18 GMT"
],
"Content-Length": [
- "2974"
+ "3055"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -281,20 +221,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198\",\r\n \"name\": \"ps2198\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs20=\",\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\": \"2020-04-20T18:48:55.024542Z\",\r\n \"gatewayUrl\": \"https://ps2198.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2198-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2198.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2198.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2198.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2198.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2198.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.216.165\"\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 \"publicIPAddresses\": [\r\n \"52.170.44.58\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.84.156.176\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-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\": 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}",
+ "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}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -305,7 +248,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -314,7 +257,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac53b038-2c55-4fe7-a3c6-281519fa33d3"
+ "84afb1a0-0de4-4699-bee7-07ca200de16c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -323,16 +266,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "9b431ab8-2a66-4445-8b41-68822ba2218a"
+ "3ec6c7be-46ca-481a-bcd5-cb3802b27907"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T184956Z:9b431ab8-2a66-4445-8b41-68822ba2218a"
+ "WESTUS:20210716T201104Z:3ec6c7be-46ca-481a-bcd5-cb3802b27907"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:49:56 GMT"
+ "Fri, 16 Jul 2021 20:11:03 GMT"
],
"Expires": [
"-1"
@@ -345,16 +288,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -365,7 +311,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -374,7 +320,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b25d76a4-9014-451b-90bb-8eb8db9975d9"
+ "6a1ef23d-6632-49be-9bf4-d909386f9e69"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -383,16 +329,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "61a9ce06-05e1-41b4-b704-996cbdc8a289"
+ "7354f012-9b7e-4015-b962-7ad2e5268526"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185057Z:61a9ce06-05e1-41b4-b704-996cbdc8a289"
+ "WESTUS:20210716T201205Z:7354f012-9b7e-4015-b962-7ad2e5268526"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:50:56 GMT"
+ "Fri, 16 Jul 2021 20:12:04 GMT"
],
"Expires": [
"-1"
@@ -405,16 +351,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -425,7 +374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -434,7 +383,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df54fe66-fcf4-49f0-9322-649e5121abbf"
+ "98183d23-92ec-4de9-9b15-e30ffb4c61c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -443,16 +392,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "db064dc9-f866-4a20-bc77-2880e699c2a0"
+ "ffc55e47-fb46-43f4-99c7-c95329fc6ad8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185157Z:db064dc9-f866-4a20-bc77-2880e699c2a0"
+ "WESTUS:20210716T201305Z:ffc55e47-fb46-43f4-99c7-c95329fc6ad8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:51:57 GMT"
+ "Fri, 16 Jul 2021 20:13:04 GMT"
],
"Expires": [
"-1"
@@ -465,16 +414,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -485,7 +437,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -494,7 +446,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "23f5f2d7-d339-4b26-9342-d33e5925f39e"
+ "e1360baf-6f32-4465-a5f1-56817f6b2c74"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -503,16 +455,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "1f51ec23-d23b-45cf-8c6f-9927fc9e5998"
+ "a8e81a08-87c6-4256-8e5f-5902c2d37844"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185257Z:1f51ec23-d23b-45cf-8c6f-9927fc9e5998"
+ "WESTUS:20210716T201405Z:a8e81a08-87c6-4256-8e5f-5902c2d37844"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:52:57 GMT"
+ "Fri, 16 Jul 2021 20:14:05 GMT"
],
"Expires": [
"-1"
@@ -525,16 +477,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -545,7 +500,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -554,7 +509,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3869fcb7-b534-4de8-a511-cc3c36003ca7"
+ "9448e0eb-3326-4631-8fdd-b118d29fcf99"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -563,16 +518,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "4ac4822c-c3c1-45ad-89dc-ed69e7fe6a72"
+ "e5a83f4f-4c34-4065-ba58-79a82e472185"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185358Z:4ac4822c-c3c1-45ad-89dc-ed69e7fe6a72"
+ "WESTUS:20210716T201505Z:e5a83f4f-4c34-4065-ba58-79a82e472185"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:53:57 GMT"
+ "Fri, 16 Jul 2021 20:15:04 GMT"
],
"Expires": [
"-1"
@@ -585,16 +540,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -605,7 +563,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -614,7 +572,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9f298d18-1be6-490f-9682-549f08402a9c"
+ "8e648c5f-2913-49c4-b324-de1ee558edb3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -623,16 +581,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "bf3ef4cf-854c-48ce-af33-e53132a3af46"
+ "c9166f7b-40a0-477b-bc1c-4897075efc3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185458Z:bf3ef4cf-854c-48ce-af33-e53132a3af46"
+ "WESTUS:20210716T201605Z:c9166f7b-40a0-477b-bc1c-4897075efc3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:54:57 GMT"
+ "Fri, 16 Jul 2021 20:16:05 GMT"
],
"Expires": [
"-1"
@@ -645,16 +603,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -665,7 +626,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -674,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2af1a129-f890-4dac-ada2-892ad8df2afe"
+ "2093ef58-2176-41a3-b18f-3787af666fb9"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -683,16 +644,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "94efa3c7-c126-449b-b3d2-75079530ad4b"
+ "98d2be06-a32c-46f7-99ea-2f04d0044106"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185558Z:94efa3c7-c126-449b-b3d2-75079530ad4b"
+ "WESTUS:20210716T201706Z:98d2be06-a32c-46f7-99ea-2f04d0044106"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:55:58 GMT"
+ "Fri, 16 Jul 2021 20:17:05 GMT"
],
"Expires": [
"-1"
@@ -705,16 +666,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -725,7 +689,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -734,7 +698,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69ad0cf1-0632-4871-890e-fb51cbd0be2e"
+ "16682e59-65fa-4019-b790-062e4639198d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -743,16 +707,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "0788b61c-30fc-4e0b-a384-34805006ee98"
+ "d0b4eaac-6d75-4945-b5ac-2716e04d5339"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185658Z:0788b61c-30fc-4e0b-a384-34805006ee98"
+ "WESTUS:20210716T201806Z:d0b4eaac-6d75-4945-b5ac-2716e04d5339"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:56:58 GMT"
+ "Fri, 16 Jul 2021 20:18:05 GMT"
],
"Expires": [
"-1"
@@ -765,16 +729,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -785,7 +752,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -794,7 +761,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "41d4346f-2c5a-4304-807c-d4317171133a"
+ "1f34bfa0-0c42-40fc-aefb-dc158d4ca549"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -803,16 +770,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "8b1c0437-0fad-4654-a522-49a3b848b1fa"
+ "070e3cd8-4846-4979-9c13-76ba325e4b45"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185759Z:8b1c0437-0fad-4654-a522-49a3b848b1fa"
+ "WESTUS:20210716T201906Z:070e3cd8-4846-4979-9c13-76ba325e4b45"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:57:58 GMT"
+ "Fri, 16 Jul 2021 20:19:05 GMT"
],
"Expires": [
"-1"
@@ -825,16 +792,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -845,7 +815,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -854,7 +824,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9da5e4bb-d437-4f9a-943b-a3ca8af01242"
+ "fdb406ff-3dd6-4ab2-afd5-a1a8edbdc674"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -863,16 +833,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "ed75e403-a8c9-4cd1-b94d-521432bbc051"
+ "bd225edd-93de-45f9-b3c7-c15d0761eb5c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185859Z:ed75e403-a8c9-4cd1-b94d-521432bbc051"
+ "WESTUS:20210716T202006Z:bd225edd-93de-45f9-b3c7-c15d0761eb5c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:58:59 GMT"
+ "Fri, 16 Jul 2021 20:20:06 GMT"
],
"Expires": [
"-1"
@@ -885,16 +855,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -905,7 +878,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -914,7 +887,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f9f75630-a66e-4ec2-a7fe-78e436f3dae6"
+ "e9f738d6-b9dd-4b13-ac96-b8a233a119ff"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -923,16 +896,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "66f32e95-ffd2-40f8-b5b6-c7cc794ffaad"
+ "4c95f857-df9d-47a2-a7f0-606f4c773924"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T185959Z:66f32e95-ffd2-40f8-b5b6-c7cc794ffaad"
+ "WESTUS:20210716T202106Z:4c95f857-df9d-47a2-a7f0-606f4c773924"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:59:59 GMT"
+ "Fri, 16 Jul 2021 20:21:06 GMT"
],
"Expires": [
"-1"
@@ -945,16 +918,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -965,7 +941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -974,7 +950,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0fba503e-b8e3-478c-8931-5e8211718946"
+ "c1919c60-8cd5-40fc-8dc3-503bb3ca242f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -983,16 +959,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "6459fc7b-2791-48a6-8762-3fc4be0c2748"
+ "ae68ba19-3d36-443f-b1a1-3526f077b02a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190100Z:6459fc7b-2791-48a6-8762-3fc4be0c2748"
+ "WESTUS:20210716T202207Z:ae68ba19-3d36-443f-b1a1-3526f077b02a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:01:00 GMT"
+ "Fri, 16 Jul 2021 20:22:06 GMT"
],
"Expires": [
"-1"
@@ -1005,16 +981,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1025,7 +1004,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1034,7 +1013,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "767c3e05-85a6-49e2-9794-2c682480c549"
+ "14d44235-333b-4ac5-9724-30c7a6a3be65"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1043,16 +1022,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "b385b4b1-c46a-4997-b77d-4b89a1a375d8"
+ "af8a586e-67a8-449b-bdb7-cfd12e587bdf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190200Z:b385b4b1-c46a-4997-b77d-4b89a1a375d8"
+ "WESTUS:20210716T202307Z:af8a586e-67a8-449b-bdb7-cfd12e587bdf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:01:59 GMT"
+ "Fri, 16 Jul 2021 20:23:06 GMT"
],
"Expires": [
"-1"
@@ -1065,16 +1044,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1085,7 +1067,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1094,25 +1076,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7701cfbc-11fa-47c4-81de-1cb92fff7873"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "6e32e2ba-019f-47ab-aeab-ee09aa7f751d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
"x-ms-correlation-request-id": [
- "18e91a11-2301-412f-b6f3-1876fe9a48b3"
+ "2e843d70-5af1-49cd-9466-9b20bf67d4d9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190300Z:18e91a11-2301-412f-b6f3-1876fe9a48b3"
+ "WESTUS:20210716T202407Z:2e843d70-5af1-49cd-9466-9b20bf67d4d9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:03:00 GMT"
+ "Fri, 16 Jul 2021 20:24:07 GMT"
],
"Expires": [
"-1"
@@ -1125,16 +1107,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1145,7 +1130,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1154,25 +1139,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c79c8cc2-c30a-4665-9f1d-a1777acdb5fb"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "ae3acca6-6a74-4c0a-88d2-f71a27c94d07"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
"x-ms-correlation-request-id": [
- "63307e19-1d1a-4ded-a18a-be9dac31cc2c"
+ "a22f1a72-8978-4f49-8eb9-5a9e5eede357"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190400Z:63307e19-1d1a-4ded-a18a-be9dac31cc2c"
+ "WESTUS:20210716T202507Z:a22f1a72-8978-4f49-8eb9-5a9e5eede357"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:04:00 GMT"
+ "Fri, 16 Jul 2021 20:25:07 GMT"
],
"Expires": [
"-1"
@@ -1185,16 +1170,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1205,7 +1193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1214,7 +1202,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5ce084a8-bdf2-49d0-b441-25b289fa3088"
+ "8a3a00af-958d-4dc1-b4ee-765adeadad42"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1223,16 +1211,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "a6eda9ae-ad8c-4474-9755-fdc7911135d4"
+ "a1aabc82-6dc7-46a4-9700-d88ff35625da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190500Z:a6eda9ae-ad8c-4474-9755-fdc7911135d4"
+ "WESTUS:20210716T202607Z:a1aabc82-6dc7-46a4-9700-d88ff35625da"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:05:00 GMT"
+ "Fri, 16 Jul 2021 20:26:07 GMT"
],
"Expires": [
"-1"
@@ -1245,16 +1233,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1265,7 +1256,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1274,7 +1265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "592e3092-a4cc-4a20-b110-fac7a069d644"
+ "6215c099-ee9c-478a-a170-1067f95250eb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1283,16 +1274,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "c1a86a7e-51d2-4387-b03f-3b018720dc3f"
+ "72f1d441-b0f1-4ef3-ac0f-0daeaade9e39"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190601Z:c1a86a7e-51d2-4387-b03f-3b018720dc3f"
+ "WESTUS:20210716T202708Z:72f1d441-b0f1-4ef3-ac0f-0daeaade9e39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:06:00 GMT"
+ "Fri, 16 Jul 2021 20:27:07 GMT"
],
"Expires": [
"-1"
@@ -1305,16 +1296,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1325,7 +1319,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1334,7 +1328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b3ca1aa-4680-46f3-bd8d-97c8b0138072"
+ "699187c2-8a48-4463-9067-3ee488b3a3db"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1343,16 +1337,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "1cf22f04-bfe4-4e45-a12e-bc91bdeca140"
+ "960de231-2822-4737-9a03-2b391fc37adb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190701Z:1cf22f04-bfe4-4e45-a12e-bc91bdeca140"
+ "WESTUS:20210716T202808Z:960de231-2822-4737-9a03-2b391fc37adb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:07:00 GMT"
+ "Fri, 16 Jul 2021 20:28:08 GMT"
],
"Expires": [
"-1"
@@ -1365,16 +1359,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1385,7 +1382,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1394,7 +1391,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0fbc0225-d45c-48d9-bd31-c60bff492bcf"
+ "bbdff661-e6aa-4331-a7c0-179a291fdc1d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1403,16 +1400,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "c64cbc0b-b04b-4380-ae65-4523ed8e29ab"
+ "0122b271-4c7c-45cd-956c-67cf357d4192"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190801Z:c64cbc0b-b04b-4380-ae65-4523ed8e29ab"
+ "WESTUS:20210716T202908Z:0122b271-4c7c-45cd-956c-67cf357d4192"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:08:01 GMT"
+ "Fri, 16 Jul 2021 20:29:08 GMT"
],
"Expires": [
"-1"
@@ -1425,16 +1422,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1445,7 +1445,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1454,7 +1454,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4571eb2b-7a05-4fe3-84ef-76267c68a301"
+ "046e5c86-8af2-4e46-a9d6-9503bd9cf64a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1463,16 +1463,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "8abc3245-a8f0-4a4e-82ab-fb6ed0306db9"
+ "975690ec-ad1a-41ca-b40a-7922a0fcb46e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T190901Z:8abc3245-a8f0-4a4e-82ab-fb6ed0306db9"
+ "WESTUS:20210716T203008Z:975690ec-ad1a-41ca-b40a-7922a0fcb46e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:09:01 GMT"
+ "Fri, 16 Jul 2021 20:30:08 GMT"
],
"Expires": [
"-1"
@@ -1485,16 +1485,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1505,7 +1508,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1514,7 +1517,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "50fd658c-dfa7-421a-b5c8-edbee2280e60"
+ "47e2be56-78cc-4ce2-ad1f-5e1014e38e87"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1523,16 +1526,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "85700dbf-fd9e-4d5a-a4f6-4c41c9d8b7b9"
+ "b5bb0e43-cd1b-42fb-bc5b-37cb1e4b56c9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191002Z:85700dbf-fd9e-4d5a-a4f6-4c41c9d8b7b9"
+ "WESTUS:20210716T203108Z:b5bb0e43-cd1b-42fb-bc5b-37cb1e4b56c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:10:02 GMT"
+ "Fri, 16 Jul 2021 20:31:08 GMT"
],
"Expires": [
"-1"
@@ -1545,16 +1548,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1565,7 +1571,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1574,7 +1580,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b881542d-1f17-4ee8-a969-91119dea987a"
+ "c1f801c5-0559-4bc0-a85b-ef333b703aa2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1583,16 +1589,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "c8f2c0f1-141c-4d5d-a924-54dad0c0b020"
+ "ca5e9c24-515e-4d94-8079-40da79ecee3f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191102Z:c8f2c0f1-141c-4d5d-a924-54dad0c0b020"
+ "WESTUS:20210716T203209Z:ca5e9c24-515e-4d94-8079-40da79ecee3f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:11:01 GMT"
+ "Fri, 16 Jul 2021 20:32:08 GMT"
],
"Expires": [
"-1"
@@ -1605,16 +1611,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1625,7 +1634,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1634,7 +1643,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "756c23bc-eb49-4767-b249-04e18cf8a6ec"
+ "3997a90c-9309-4aa3-bce6-6c12942acf9f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1643,16 +1652,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "e560db3b-2434-4def-b38e-c300448a9474"
+ "f4d172b4-bc4b-4994-88d0-c01dd5ce499a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191202Z:e560db3b-2434-4def-b38e-c300448a9474"
+ "WESTUS:20210716T203309Z:f4d172b4-bc4b-4994-88d0-c01dd5ce499a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:12:02 GMT"
+ "Fri, 16 Jul 2021 20:33:09 GMT"
],
"Expires": [
"-1"
@@ -1665,16 +1674,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1685,7 +1697,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1694,7 +1706,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b2ea7c17-8b6f-41b5-9243-4d94082a2e27"
+ "2ec6c89c-85dc-43f9-b124-51cbe3b036d4"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1703,16 +1715,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "ee33acba-29ff-4cc1-aa94-eb4ebf8002eb"
+ "8c2c5b0d-68b1-438a-914c-1fccafaf838f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191303Z:ee33acba-29ff-4cc1-aa94-eb4ebf8002eb"
+ "WESTUS:20210716T203409Z:8c2c5b0d-68b1-438a-914c-1fccafaf838f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:13:02 GMT"
+ "Fri, 16 Jul 2021 20:34:08 GMT"
],
"Expires": [
"-1"
@@ -1725,16 +1737,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1745,7 +1760,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1754,7 +1769,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a9c83900-d617-4c10-af7f-5adb86603e8a"
+ "73ddd53c-d050-4a65-8052-ae577872bd5f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1763,16 +1778,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "2b9a90e0-a4d3-4155-ae5b-40ad73aae501"
+ "54a191c2-cf88-430b-bfdd-d07d21d4b970"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191403Z:2b9a90e0-a4d3-4155-ae5b-40ad73aae501"
+ "WESTUS:20210716T203509Z:54a191c2-cf88-430b-bfdd-d07d21d4b970"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:14:03 GMT"
+ "Fri, 16 Jul 2021 20:35:09 GMT"
],
"Expires": [
"-1"
@@ -1785,16 +1800,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9BY3RfMmYzZWU1NWU=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOUJZM1JmTW1ZelpXVTFOV1U9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1804,11 +1822,17 @@
"Pragma": [
"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"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7beef295-1fc4-41df-b5cb-acfb0d4ef189"
+ "bc6a1917-a623-4dc3-9668-767df41e139f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1817,47 +1841,41 @@
"11974"
],
"x-ms-correlation-request-id": [
- "788bdbf7-5272-4e6d-b078-78a1e57eb4ea"
+ "dfb24b37-4e83-4f31-a26e-1c4aca5dd533"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191503Z:788bdbf7-5272-4e6d-b078-78a1e57eb4ea"
+ "WESTUS:20210716T203609Z:dfb24b37-4e83-4f31-a26e-1c4aca5dd533"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:15:03 GMT"
- ],
- "Content-Length": [
- "2966"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Fri, 16 Jul 2021 20:36:09 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198\",\r\n \"name\": \"ps2198\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs2w=\",\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\": \"2020-04-20T18:48:55.024542Z\",\r\n \"gatewayUrl\": \"https://ps2198.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2198-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2198.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2198.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2198.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2198.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2198.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.216.165\"\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 \"publicIPAddresses\": [\r\n \"52.170.44.58\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.84.156.176\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-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\": 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}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78d007fd-ba23-46e7-8c08-0962294db093"
- ],
- "Accept-Language": [
- "en-US"
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1867,14 +1885,17 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAEs2w=\""
+ "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"
+ ],
+ "Retry-After": [
+ "60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0d4a9d33-d564-45bd-9382-8df19610e469"
+ "c2ddfe6e-d7dd-470e-86ce-00201e22ac0b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1883,41 +1904,41 @@
"11973"
],
"x-ms-correlation-request-id": [
- "43094d27-c6e3-42b7-baa5-63388c7254c7"
+ "31b39dc8-9e1d-4ed5-b1b4-7c233365917d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191503Z:43094d27-c6e3-42b7-baa5-63388c7254c7"
+ "WESTUS:20210716T203710Z:31b39dc8-9e1d-4ed5-b1b4-7c233365917d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:15:03 GMT"
- ],
- "Content-Length": [
- "2966"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Fri, 16 Jul 2021 20:37:09 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198\",\r\n \"name\": \"ps2198\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs2w=\",\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\": \"2020-04-20T18:48:55.024542Z\",\r\n \"gatewayUrl\": \"https://ps2198.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2198-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2198.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2198.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2198.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2198.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2198.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.216.165\"\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 \"publicIPAddresses\": [\r\n \"52.170.44.58\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-eastus-01.regional.azure-api.net\",\r\n \"disableGateway\": false\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"capacity\": 1\r\n },\r\n \"publicIPAddresses\": [\r\n \"13.84.156.176\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-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\": 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}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1928,7 +1949,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1937,7 +1958,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "646bd584-e259-469f-809e-2f97348999bf"
+ "d07338d6-7326-4afa-95e5-6f62e2aca4a3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1946,16 +1967,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "773e5410-cf2e-434f-8346-195f1c844510"
+ "6f912989-4bf4-40eb-b878-4e6e288ba394"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191607Z:773e5410-cf2e-434f-8346-195f1c844510"
+ "WESTUS:20210716T203810Z:6f912989-4bf4-40eb-b878-4e6e288ba394"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:16:07 GMT"
+ "Fri, 16 Jul 2021 20:38:09 GMT"
],
"Expires": [
"-1"
@@ -1968,16 +1989,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1988,7 +2012,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1997,7 +2021,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "59d36775-c290-4ddb-9948-0ddb0acce83c"
+ "df4c1506-6b4e-4b13-9822-f19559dd47c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2006,16 +2030,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "3494ad6b-d3f6-446f-9f52-6f28df236907"
+ "739881d0-71fe-42c0-b09a-4c2f89a0db06"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191707Z:3494ad6b-d3f6-446f-9f52-6f28df236907"
+ "WESTUS:20210716T203910Z:739881d0-71fe-42c0-b09a-4c2f89a0db06"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:17:07 GMT"
+ "Fri, 16 Jul 2021 20:39:10 GMT"
],
"Expires": [
"-1"
@@ -2028,16 +2052,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2048,7 +2075,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2057,7 +2084,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3c084dd8-1fe2-48a4-9b14-9499005b54b2"
+ "4ad6824d-97eb-402e-873e-b2f21d7383da"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2066,16 +2093,16 @@
"11970"
],
"x-ms-correlation-request-id": [
- "4782e7e2-d409-45c8-9515-f328abab9d8c"
+ "b6c77ecf-910a-4f4a-9a41-2165d3fdfd55"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191808Z:4782e7e2-d409-45c8-9515-f328abab9d8c"
+ "WESTUS:20210716T204010Z:b6c77ecf-910a-4f4a-9a41-2165d3fdfd55"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:18:07 GMT"
+ "Fri, 16 Jul 2021 20:40:10 GMT"
],
"Expires": [
"-1"
@@ -2088,16 +2115,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2108,7 +2138,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2117,7 +2147,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3e6461e-803a-492c-a664-f1c87357a730"
+ "8d5c6178-68c8-4a81-b8e3-a31ddd903552"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2126,16 +2156,16 @@
"11969"
],
"x-ms-correlation-request-id": [
- "b3121ce3-1ec6-4692-a818-bca12fa8c3fa"
+ "f5bafde7-2c02-4817-b7fc-0cde890d65ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T191908Z:b3121ce3-1ec6-4692-a818-bca12fa8c3fa"
+ "WESTUS:20210716T204111Z:f5bafde7-2c02-4817-b7fc-0cde890d65ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:19:07 GMT"
+ "Fri, 16 Jul 2021 20:41:10 GMT"
],
"Expires": [
"-1"
@@ -2148,16 +2178,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfQWN0XzlkZDI3Y2M=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlFXTjBYemxrWkRJM1kyTT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ca33c1d-e658-4e07-b53c-1263527803c1"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2167,17 +2200,11 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
- ],
- "Retry-After": [
- "60"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03788132-5805-4e1c-be56-89baf4b76223"
+ "4c573f8d-2953-4020-b734-53976729be4b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2186,38 +2213,47 @@
"11968"
],
"x-ms-correlation-request-id": [
- "4afeb903-a495-4f36-a38e-7de4e206d9c4"
+ "bdbafb5d-44e2-46a6-8288-8cc90cc2d018"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192008Z:4afeb903-a495-4f36-a38e-7de4e206d9c4"
+ "WESTUS:20210716T204211Z:bdbafb5d-44e2-46a6-8288-8cc90cc2d018"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:20:08 GMT"
+ "Fri, 16 Jul 2021 20:42:10 GMT"
+ ],
+ "Content-Length": [
+ "3047"
+ ],
+ "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/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
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bda12df7-784c-47dd-b04c-2ba653d99ff2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2227,17 +2263,14 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
- ],
- "Retry-After": [
- "60"
+ "ETag": [
+ "\"AAAAAAAT8BQ=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "56ada8da-2c87-428e-9252-6de3cb7ba9fd"
+ "34530762-3406-4bed-8444-00603d353c6e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2246,38 +2279,44 @@
"11967"
],
"x-ms-correlation-request-id": [
- "d17bc2d8-36ff-409f-b1c2-36e9eb445118"
+ "14736f57-93f7-4cae-99f1-ba9cdfc4a7e7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192109Z:d17bc2d8-36ff-409f-b1c2-36e9eb445118"
+ "WESTUS:20210716T204211Z:14736f57-93f7-4cae-99f1-ba9cdfc4a7e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:21:08 GMT"
+ "Fri, 16 Jul 2021 20:42:10 GMT"
+ ],
+ "Content-Length": [
+ "3047"
+ ],
+ "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/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
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2288,7 +2327,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2297,7 +2336,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87aa09c6-17cb-4835-a76a-a1eb85e5b065"
+ "ac672d7d-4d81-408a-8f12-03e2a5e5821f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2306,16 +2345,16 @@
"11966"
],
"x-ms-correlation-request-id": [
- "0b2fe98d-04f2-4664-a2d7-9f7149884c13"
+ "46f593fe-24d3-460b-8b9a-3dcc8e693c11"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192209Z:0b2fe98d-04f2-4664-a2d7-9f7149884c13"
+ "WESTUS:20210716T204319Z:46f593fe-24d3-460b-8b9a-3dcc8e693c11"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:22:08 GMT"
+ "Fri, 16 Jul 2021 20:43:18 GMT"
],
"Expires": [
"-1"
@@ -2328,16 +2367,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2348,7 +2390,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2357,7 +2399,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "09175655-e89b-4741-a54d-d11e7b08c62e"
+ "ac1dc98e-0863-4a37-8dff-33cddf1072ed"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2366,16 +2408,16 @@
"11965"
],
"x-ms-correlation-request-id": [
- "1b8fe341-bd76-44f9-ab50-bd0d260aa0e2"
+ "1e5308c3-729f-494f-a334-f69c223e624b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192309Z:1b8fe341-bd76-44f9-ab50-bd0d260aa0e2"
+ "WESTUS:20210716T204419Z:1e5308c3-729f-494f-a334-f69c223e624b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:23:08 GMT"
+ "Fri, 16 Jul 2021 20:44:19 GMT"
],
"Expires": [
"-1"
@@ -2388,16 +2430,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2408,7 +2453,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2417,7 +2462,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9f240a39-3a88-4952-bb5f-48528a3e5222"
+ "cd261945-39f9-4353-91ac-b8836cd7d31f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2426,16 +2471,16 @@
"11964"
],
"x-ms-correlation-request-id": [
- "dbd1cbef-46ff-45d2-8e96-78c751292eb3"
+ "b92c9a2a-cfd9-4cc9-86f9-e1422896f7a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192409Z:dbd1cbef-46ff-45d2-8e96-78c751292eb3"
+ "WESTUS:20210716T204519Z:b92c9a2a-cfd9-4cc9-86f9-e1422896f7a3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:24:09 GMT"
+ "Fri, 16 Jul 2021 20:45:19 GMT"
],
"Expires": [
"-1"
@@ -2448,16 +2493,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2468,7 +2516,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2477,7 +2525,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e7745bf5-68b7-4748-b699-25e01acc6a4b"
+ "ea2f9fa4-0c0f-4ecd-949e-08db25c5ce21"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2486,16 +2534,16 @@
"11963"
],
"x-ms-correlation-request-id": [
- "8d9edf56-8014-4165-b6c2-8978a2eb7047"
+ "f095715b-681e-4161-921d-198885e5d571"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192510Z:8d9edf56-8014-4165-b6c2-8978a2eb7047"
+ "WESTUS:20210716T204619Z:f095715b-681e-4161-921d-198885e5d571"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:25:09 GMT"
+ "Fri, 16 Jul 2021 20:46:19 GMT"
],
"Expires": [
"-1"
@@ -2508,16 +2556,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2528,7 +2579,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2537,7 +2588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "522f71b0-8237-43f0-a31e-66cec6af21f5"
+ "87b8df19-b99b-4564-a89d-f4acebd5fb94"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2546,16 +2597,16 @@
"11962"
],
"x-ms-correlation-request-id": [
- "6988cf68-db62-49ee-8e9f-d070dc404935"
+ "9bd4bcb2-d571-41e2-89e7-5425f55eaa28"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192610Z:6988cf68-db62-49ee-8e9f-d070dc404935"
+ "WESTUS:20210716T204719Z:9bd4bcb2-d571-41e2-89e7-5425f55eaa28"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:26:10 GMT"
+ "Fri, 16 Jul 2021 20:47:19 GMT"
],
"Expires": [
"-1"
@@ -2568,16 +2619,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2588,7 +2642,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2597,7 +2651,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4bd2e819-9c55-4920-99b8-792c4b16d8a8"
+ "fd3a6c81-3572-4a4b-9e94-faad3b9872b2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2606,16 +2660,16 @@
"11961"
],
"x-ms-correlation-request-id": [
- "7ba59dc3-dab8-40e2-8a5c-dc55b5b5961a"
+ "f50dc608-698d-4af7-83f9-af45a865cc41"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192710Z:7ba59dc3-dab8-40e2-8a5c-dc55b5b5961a"
+ "WESTUS:20210716T204820Z:f50dc608-698d-4af7-83f9-af45a865cc41"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:27:09 GMT"
+ "Fri, 16 Jul 2021 20:48:19 GMT"
],
"Expires": [
"-1"
@@ -2628,16 +2682,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2648,7 +2705,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2657,7 +2714,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96eeb920-c557-4fda-b9f4-413228744e12"
+ "23a3c00f-c76b-4254-beb2-b614033938f8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2666,16 +2723,16 @@
"11960"
],
"x-ms-correlation-request-id": [
- "a8061b76-7436-46bc-8097-1ca5c749a252"
+ "269f1e9c-2fa3-48b9-8f85-3276c31a2e2d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192811Z:a8061b76-7436-46bc-8097-1ca5c749a252"
+ "WESTUS:20210716T204920Z:269f1e9c-2fa3-48b9-8f85-3276c31a2e2d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:28:10 GMT"
+ "Fri, 16 Jul 2021 20:49:19 GMT"
],
"Expires": [
"-1"
@@ -2688,16 +2745,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2708,7 +2768,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2717,7 +2777,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "209854d8-2258-4f06-af5b-679152973144"
+ "fadde932-9357-41a8-9309-7f937e08df57"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2726,16 +2786,16 @@
"11959"
],
"x-ms-correlation-request-id": [
- "8a6e6f9a-bd2a-4659-9d7b-2c55d702ed6e"
+ "b2481c1a-8951-40a4-8ab6-4fbfbbac715f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T192911Z:8a6e6f9a-bd2a-4659-9d7b-2c55d702ed6e"
+ "WESTUS:20210716T205020Z:b2481c1a-8951-40a4-8ab6-4fbfbbac715f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:29:11 GMT"
+ "Fri, 16 Jul 2021 20:50:20 GMT"
],
"Expires": [
"-1"
@@ -2748,16 +2808,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2768,7 +2831,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2777,7 +2840,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a5d6e13f-f4a4-430f-a797-e3c9c5fc6390"
+ "06cf1722-06f5-46fc-9440-adf6e34a1419"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2786,16 +2849,16 @@
"11958"
],
"x-ms-correlation-request-id": [
- "ddacc9a1-e722-4732-b063-18f452d44a23"
+ "d80223da-9afc-488d-9a94-f719077ea671"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193011Z:ddacc9a1-e722-4732-b063-18f452d44a23"
+ "WESTUS:20210716T205120Z:d80223da-9afc-488d-9a94-f719077ea671"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:30:10 GMT"
+ "Fri, 16 Jul 2021 20:51:20 GMT"
],
"Expires": [
"-1"
@@ -2808,16 +2871,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2828,7 +2894,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2837,7 +2903,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10113bd9-68e2-4801-8610-1762fb60d26a"
+ "fafb9510-4092-4375-b913-413301044d84"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2846,16 +2912,16 @@
"11957"
],
"x-ms-correlation-request-id": [
- "3e930430-7770-4941-a86b-ad6ecfacc389"
+ "159e58ed-dd08-4024-86c2-e91b22796e9b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193111Z:3e930430-7770-4941-a86b-ad6ecfacc389"
+ "WESTUS:20210716T205220Z:159e58ed-dd08-4024-86c2-e91b22796e9b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:31:11 GMT"
+ "Fri, 16 Jul 2021 20:52:20 GMT"
],
"Expires": [
"-1"
@@ -2868,16 +2934,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2888,7 +2957,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2897,7 +2966,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2f0897bb-b68f-407f-8d75-814c88f8547c"
+ "eba76cba-2829-4b17-948c-be247dd3464a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2906,16 +2975,16 @@
"11956"
],
"x-ms-correlation-request-id": [
- "618fe47c-0e8c-4201-9c68-ef73e1b7d2ee"
+ "bb0dad28-d2da-4c7d-ad23-289354256983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193212Z:618fe47c-0e8c-4201-9c68-ef73e1b7d2ee"
+ "WESTUS:20210716T205321Z:bb0dad28-d2da-4c7d-ad23-289354256983"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:32:11 GMT"
+ "Fri, 16 Jul 2021 20:53:20 GMT"
],
"Expires": [
"-1"
@@ -2928,16 +2997,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2948,7 +3020,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01"
+ "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"
@@ -2957,7 +3029,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a744bcd8-bac0-4792-bb73-0f1908c22445"
+ "4653937e-fa24-4099-ac41-de13742989cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2966,16 +3038,16 @@
"11955"
],
"x-ms-correlation-request-id": [
- "2f20a1ff-0b73-4d5b-bace-00b8f1a6ec7f"
+ "b2dbf5a6-61ab-4942-bc4b-3fa28706c178"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193312Z:2f20a1ff-0b73-4d5b-bace-00b8f1a6ec7f"
+ "WESTUS:20210716T205421Z:b2dbf5a6-61ab-4942-bc4b-3fa28706c178"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:33:12 GMT"
+ "Fri, 16 Jul 2021 20:54:21 GMT"
],
"Expires": [
"-1"
@@ -2988,16 +3060,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198/operationresults/Y2VudHJhbHVzOnBzMjE5OF9VcGRhdGVfNjNlMWUwYzI=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczIxOTgvb3BlcmF0aW9ucmVzdWx0cy9ZMlZ1ZEhKaGJIVnpPbkJ6TWpFNU9GOVZjR1JoZEdWZk5qTmxNV1V3WXpJPT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4150/providers/Microsoft.ApiManagement/service/ps2984/operationresults/d2VzdHVzMjpwczI5ODRfVXBkYXRlXzMwY2Q2MWQ5?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDE1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczI5ODQvb3BlcmF0aW9ucmVzdWx0cy9kMlZ6ZEhWek1qcHdjekk1T0RSZlZYQmtZWFJsWHpNd1kyUTJNV1E1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3007,11 +3082,17 @@
"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": [
- "1c2c5bc6-9ce1-4cb9-841b-55f9d7206aad"
+ "6c1025db-d53b-4a29-a920-422716bc5e2b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3020,19 +3101,832 @@
"11954"
],
"x-ms-correlation-request-id": [
- "e9780c3a-7e51-4deb-8882-224604590e84"
+ "32349b29-4a14-4f2a-b509-c4e36788d5a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T205521Z:32349b29-4a14-4f2a-b509-c4e36788d5a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 20:55:20 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "9e559d7d-153d-45a9-9bf8-0853ced27aec"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-correlation-request-id": [
+ "178edaa4-3e21-4d28-95a7-af2c01f4dcb0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T205621Z:178edaa4-3e21-4d28-95a7-af2c01f4dcb0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 20:56:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "f6909111-f42f-4ea0-829f-08201a503791"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-correlation-request-id": [
+ "95d6c6ed-7dd0-4256-aac2-0aa61d4521fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T205721Z:95d6c6ed-7dd0-4256-aac2-0aa61d4521fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 20:57:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "fb332146-ddb0-45f7-a8e7-0300b58d615d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-correlation-request-id": [
+ "42213d95-bc3a-4be0-851e-ce708c2df939"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T205821Z:42213d95-bc3a-4be0-851e-ce708c2df939"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 20:58:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "f5df7c36-0028-4dbd-ac53-7c8dd34abbcf"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-correlation-request-id": [
+ "69c4b3d3-98fd-494d-8bfa-caa2134ce040"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T205922Z:69c4b3d3-98fd-494d-8bfa-caa2134ce040"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 20:59:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "982c3b89-9033-4f53-8c16-609ee0a1bee8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4b3b9c4-c6a7-41ec-a4a3-1b9929925739"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210022Z:b4b3b9c4-c6a7-41ec-a4a3-1b9929925739"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:00:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "6c8f2fc5-c6dd-49ef-8591-18735ea7b2e3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ebdf61c-caaf-465f-8c4b-e0825b3e7aca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210122Z:6ebdf61c-caaf-465f-8c4b-e0825b3e7aca"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:01:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "e69463d3-a0b8-4303-b68f-22893dc3b0fc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-correlation-request-id": [
+ "482e71f7-4814-40eb-9713-3c4b3b7c5620"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210222Z:482e71f7-4814-40eb-9713-3c4b3b7c5620"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:02:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "8fddfe6e-6ea1-4488-951b-325c54c4eff1"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-correlation-request-id": [
+ "d704e3e9-fd02-4295-a3e8-b8f321ba6b08"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210322Z:d704e3e9-fd02-4295-a3e8-b8f321ba6b08"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:03:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "a6329bf2-06e9-479b-9068-fee46af28a0c"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-correlation-request-id": [
+ "c69486d4-cfba-44cc-aa77-9a5f343d74ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210423Z:c69486d4-cfba-44cc-aa77-9a5f343d74ad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:04:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "4f762a09-d8ee-4f10-b0b1-bc8bb4f164c9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-correlation-request-id": [
+ "5aecafe0-2a21-4e35-ab71-422d2179c313"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210523Z:5aecafe0-2a21-4e35-ab71-422d2179c313"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:05:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "225d35f9-9151-42cb-97ae-ad36a4ab789b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c69fe62-3f32-4955-983a-bef4b9e15493"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210623Z:5c69fe62-3f32-4955-983a-bef4b9e15493"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:06:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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/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": [
+ "d36d1338-cfb8-4ecf-bb4d-da6cdff3816e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11942"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6fb9ed8-37b8-40f3-8270-ea209dd38ed2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20210716T210723Z:c6fb9ed8-37b8-40f3-8270-ea209dd38ed2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 16 Jul 2021 21:07:22 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a45072ac-6fc2-40f4-9950-b3d660a6ee20"
+ ],
+ "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": [
+ "c59e1305-86a1-438e-bb8b-c643bcd437bc"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11941"
+ ],
+ "x-ms-correlation-request-id": [
+ "71f92b43-a1fd-439b-8118-4d6f77c0b5fd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193412Z:e9780c3a-7e51-4deb-8882-224604590e84"
+ "WESTUS:20210716T210823Z:71f92b43-a1fd-439b-8118-4d6f77c0b5fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:34:11 GMT"
+ "Fri, 16 Jul 2021 21:08:23 GMT"
],
"Content-Length": [
- "2763"
+ "2821"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3041,26 +3935,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps2974/providers/Microsoft.ApiManagement/service/ps2198\",\r\n \"name\": \"ps2198\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"Central US\",\r\n \"etag\": \"AAAAAAAEs64=\",\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\": \"2020-04-20T18:48:55.024542Z\",\r\n \"gatewayUrl\": \"https://ps2198.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps2198-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps2198.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps2198.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps2198.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps2198.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps2198.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"168.61.216.165\"\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 \"publicIPAddresses\": [\r\n \"13.84.156.176\"\r\n ],\r\n \"privateIPAddresses\": null,\r\n \"virtualNetworkConfiguration\": null,\r\n \"gatewayRegionalUrl\": \"https://ps2198-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\": 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\": \"a96849f8-2ed7-4c19-83dc-1732775ae375\",\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}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps2974?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzMjk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4150?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDE1MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1775d8e-9f26-43a1-b402-6134f430ee63"
+ "06dbfcbf-ec06-4448-ab5b-cef833bc10c1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3071,7 +3965,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3080,13 +3974,13 @@
"14999"
],
"x-ms-request-id": [
- "6996ad92-e134-433e-a8a6-3bcceb8b35e9"
+ "1feecb99-acb4-48ab-b6f9-6e116974d7aa"
],
"x-ms-correlation-request-id": [
- "6996ad92-e134-433e-a8a6-3bcceb8b35e9"
+ "1feecb99-acb4-48ab-b6f9-6e116974d7aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193414Z:6996ad92-e134-433e-a8a6-3bcceb8b35e9"
+ "WESTCENTRALUS:20210716T210824Z:1feecb99-acb4-48ab-b6f9-6e116974d7aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3095,7 +3989,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:34:13 GMT"
+ "Fri, 16 Jul 2021 21:08:23 GMT"
],
"Expires": [
"-1"
@@ -3108,16 +4002,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3128,7 +4022,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3137,13 +4031,13 @@
"11999"
],
"x-ms-request-id": [
- "3d0f40dd-a902-4cb8-9f54-4cba2cbe7b31"
+ "fac575dd-4f28-4e14-8964-f4c61f470f3c"
],
"x-ms-correlation-request-id": [
- "3d0f40dd-a902-4cb8-9f54-4cba2cbe7b31"
+ "fac575dd-4f28-4e14-8964-f4c61f470f3c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193429Z:3d0f40dd-a902-4cb8-9f54-4cba2cbe7b31"
+ "WESTCENTRALUS:20210716T210839Z:fac575dd-4f28-4e14-8964-f4c61f470f3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3152,7 +4046,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:34:28 GMT"
+ "Fri, 16 Jul 2021 21:08:38 GMT"
],
"Expires": [
"-1"
@@ -3165,16 +4059,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3185,7 +4079,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3194,13 +4088,13 @@
"11998"
],
"x-ms-request-id": [
- "89d3f6b0-4ea0-4b94-8e19-a739dcab9032"
+ "6ea4cf67-b2fe-4b37-bd94-68c17074c4a8"
],
"x-ms-correlation-request-id": [
- "89d3f6b0-4ea0-4b94-8e19-a739dcab9032"
+ "6ea4cf67-b2fe-4b37-bd94-68c17074c4a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193444Z:89d3f6b0-4ea0-4b94-8e19-a739dcab9032"
+ "WESTCENTRALUS:20210716T210855Z:6ea4cf67-b2fe-4b37-bd94-68c17074c4a8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3209,7 +4103,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:34:43 GMT"
+ "Fri, 16 Jul 2021 21:08:54 GMT"
],
"Expires": [
"-1"
@@ -3222,16 +4116,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3242,7 +4136,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3251,13 +4145,13 @@
"11997"
],
"x-ms-request-id": [
- "9b0d5773-05b6-4121-bdf2-d75faf498536"
+ "6857087a-bc1b-4af0-89e3-879a27fca82c"
],
"x-ms-correlation-request-id": [
- "9b0d5773-05b6-4121-bdf2-d75faf498536"
+ "6857087a-bc1b-4af0-89e3-879a27fca82c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193459Z:9b0d5773-05b6-4121-bdf2-d75faf498536"
+ "WESTCENTRALUS:20210716T210910Z:6857087a-bc1b-4af0-89e3-879a27fca82c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3266,7 +4160,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:34:58 GMT"
+ "Fri, 16 Jul 2021 21:09:09 GMT"
],
"Expires": [
"-1"
@@ -3279,16 +4173,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3299,7 +4193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3308,13 +4202,13 @@
"11996"
],
"x-ms-request-id": [
- "e6dbca31-ecd8-45c0-a5ff-06559d08a4f1"
+ "e6d9f531-e150-457b-930f-88434fe5658f"
],
"x-ms-correlation-request-id": [
- "e6dbca31-ecd8-45c0-a5ff-06559d08a4f1"
+ "e6d9f531-e150-457b-930f-88434fe5658f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193514Z:e6dbca31-ecd8-45c0-a5ff-06559d08a4f1"
+ "WESTCENTRALUS:20210716T210925Z:e6d9f531-e150-457b-930f-88434fe5658f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3323,7 +4217,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:35:13 GMT"
+ "Fri, 16 Jul 2021 21:09:24 GMT"
],
"Expires": [
"-1"
@@ -3336,16 +4230,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3356,7 +4250,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3365,13 +4259,13 @@
"11995"
],
"x-ms-request-id": [
- "ce7d01fd-ed40-4ddb-ae0d-f5d746a054b9"
+ "6e665255-7ba1-4463-9500-ee0febe12bcf"
],
"x-ms-correlation-request-id": [
- "ce7d01fd-ed40-4ddb-ae0d-f5d746a054b9"
+ "6e665255-7ba1-4463-9500-ee0febe12bcf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193529Z:ce7d01fd-ed40-4ddb-ae0d-f5d746a054b9"
+ "WESTCENTRALUS:20210716T210940Z:6e665255-7ba1-4463-9500-ee0febe12bcf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3380,7 +4274,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:35:29 GMT"
+ "Fri, 16 Jul 2021 21:09:39 GMT"
],
"Expires": [
"-1"
@@ -3393,16 +4287,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3413,7 +4307,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3422,13 +4316,13 @@
"11994"
],
"x-ms-request-id": [
- "28bd1723-de4a-4de9-a273-f230fbea2aac"
+ "812d50f9-f163-4630-b3dd-7bfa7bb17f70"
],
"x-ms-correlation-request-id": [
- "28bd1723-de4a-4de9-a273-f230fbea2aac"
+ "812d50f9-f163-4630-b3dd-7bfa7bb17f70"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193545Z:28bd1723-de4a-4de9-a273-f230fbea2aac"
+ "WESTCENTRALUS:20210716T210955Z:812d50f9-f163-4630-b3dd-7bfa7bb17f70"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3437,7 +4331,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:35:45 GMT"
+ "Fri, 16 Jul 2021 21:09:54 GMT"
],
"Expires": [
"-1"
@@ -3450,16 +4344,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3470,7 +4364,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3479,13 +4373,13 @@
"11993"
],
"x-ms-request-id": [
- "3ab96c6f-e763-4af0-8ac2-09e5ac68b6fe"
+ "2b4632b7-8928-467d-be88-86b1865ed00b"
],
"x-ms-correlation-request-id": [
- "3ab96c6f-e763-4af0-8ac2-09e5ac68b6fe"
+ "2b4632b7-8928-467d-be88-86b1865ed00b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193600Z:3ab96c6f-e763-4af0-8ac2-09e5ac68b6fe"
+ "WESTCENTRALUS:20210716T211010Z:2b4632b7-8928-467d-be88-86b1865ed00b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3494,7 +4388,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:36:00 GMT"
+ "Fri, 16 Jul 2021 21:10:09 GMT"
],
"Expires": [
"-1"
@@ -3507,16 +4401,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3527,7 +4421,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3536,13 +4430,13 @@
"11992"
],
"x-ms-request-id": [
- "7183516c-8e7d-469c-8a04-de9167428b8a"
+ "6e2cdd7e-8e73-47ac-aafc-611c2a0be03a"
],
"x-ms-correlation-request-id": [
- "7183516c-8e7d-469c-8a04-de9167428b8a"
+ "6e2cdd7e-8e73-47ac-aafc-611c2a0be03a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193615Z:7183516c-8e7d-469c-8a04-de9167428b8a"
+ "WESTCENTRALUS:20210716T211025Z:6e2cdd7e-8e73-47ac-aafc-611c2a0be03a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3551,7 +4445,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:36:15 GMT"
+ "Fri, 16 Jul 2021 21:10:24 GMT"
],
"Expires": [
"-1"
@@ -3564,16 +4458,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3584,7 +4478,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3593,13 +4487,13 @@
"11991"
],
"x-ms-request-id": [
- "f8ede8ff-83c3-4a51-8b53-fff3cf356434"
+ "89a68d89-ad49-4f6b-bded-290923ae0a66"
],
"x-ms-correlation-request-id": [
- "f8ede8ff-83c3-4a51-8b53-fff3cf356434"
+ "89a68d89-ad49-4f6b-bded-290923ae0a66"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193630Z:f8ede8ff-83c3-4a51-8b53-fff3cf356434"
+ "WESTCENTRALUS:20210716T211040Z:89a68d89-ad49-4f6b-bded-290923ae0a66"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3608,7 +4502,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:36:30 GMT"
+ "Fri, 16 Jul 2021 21:10:39 GMT"
],
"Expires": [
"-1"
@@ -3621,16 +4515,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3641,7 +4535,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3650,13 +4544,13 @@
"11990"
],
"x-ms-request-id": [
- "7cfde9e3-3449-44f5-ad68-435d5979c13d"
+ "9633c93b-6cc5-4368-9b33-035163fe522c"
],
"x-ms-correlation-request-id": [
- "7cfde9e3-3449-44f5-ad68-435d5979c13d"
+ "9633c93b-6cc5-4368-9b33-035163fe522c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193645Z:7cfde9e3-3449-44f5-ad68-435d5979c13d"
+ "WESTCENTRALUS:20210716T211055Z:9633c93b-6cc5-4368-9b33-035163fe522c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3665,7 +4559,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:36:45 GMT"
+ "Fri, 16 Jul 2021 21:10:54 GMT"
],
"Expires": [
"-1"
@@ -3678,16 +4572,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3698,7 +4592,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3707,13 +4601,13 @@
"11989"
],
"x-ms-request-id": [
- "4fc39a46-016d-45cc-a507-17515c129132"
+ "14451608-61c5-4e72-8d06-614a16129aed"
],
"x-ms-correlation-request-id": [
- "4fc39a46-016d-45cc-a507-17515c129132"
+ "14451608-61c5-4e72-8d06-614a16129aed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193700Z:4fc39a46-016d-45cc-a507-17515c129132"
+ "WESTCENTRALUS:20210716T211110Z:14451608-61c5-4e72-8d06-614a16129aed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3722,7 +4616,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:00 GMT"
+ "Fri, 16 Jul 2021 21:11:09 GMT"
],
"Expires": [
"-1"
@@ -3735,16 +4629,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3755,7 +4649,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3764,13 +4658,13 @@
"11988"
],
"x-ms-request-id": [
- "e3bf79bd-4eee-462c-95a1-1f5477acd469"
+ "3da9f28d-6ea3-4245-8182-c0e2ba052c95"
],
"x-ms-correlation-request-id": [
- "e3bf79bd-4eee-462c-95a1-1f5477acd469"
+ "3da9f28d-6ea3-4245-8182-c0e2ba052c95"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193716Z:e3bf79bd-4eee-462c-95a1-1f5477acd469"
+ "WESTCENTRALUS:20210716T211125Z:3da9f28d-6ea3-4245-8182-c0e2ba052c95"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3779,7 +4673,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:15 GMT"
+ "Fri, 16 Jul 2021 21:11:25 GMT"
],
"Expires": [
"-1"
@@ -3792,16 +4686,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3812,7 +4706,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxNTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3821,13 +4715,13 @@
"11987"
],
"x-ms-request-id": [
- "18800959-ad37-42f2-ab7c-98e83e621748"
+ "f74efb92-88b4-44fc-875e-f998352e9327"
],
"x-ms-correlation-request-id": [
- "18800959-ad37-42f2-ab7c-98e83e621748"
+ "f74efb92-88b4-44fc-875e-f998352e9327"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193731Z:18800959-ad37-42f2-ab7c-98e83e621748"
+ "WESTCENTRALUS:20210716T211141Z:f74efb92-88b4-44fc-875e-f998352e9327"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3836,7 +4730,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:31 GMT"
+ "Fri, 16 Jul 2021 21:11:40 GMT"
],
"Expires": [
"-1"
@@ -3849,16 +4743,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3872,13 +4766,13 @@
"11986"
],
"x-ms-request-id": [
- "a8f4f5a6-580b-4f9d-bbf4-32c3731eb330"
+ "94a6f929-373e-40c2-b3e1-d938586e2508"
],
"x-ms-correlation-request-id": [
- "a8f4f5a6-580b-4f9d-bbf4-32c3731eb330"
+ "94a6f929-373e-40c2-b3e1-d938586e2508"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193746Z:a8f4f5a6-580b-4f9d-bbf4-32c3731eb330"
+ "WESTCENTRALUS:20210716T211156Z:94a6f929-373e-40c2-b3e1-d938586e2508"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3887,7 +4781,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:46 GMT"
+ "Fri, 16 Jul 2021 21:11:55 GMT"
],
"Expires": [
"-1"
@@ -3900,16 +4794,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSmpaVzUwY21Gc2RYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3923,13 +4817,13 @@
"11985"
],
"x-ms-request-id": [
- "99c4c864-c08a-4368-9d42-99a1bb24ce78"
+ "8a63dd76-a0c2-468c-b796-a553c20475f4"
],
"x-ms-correlation-request-id": [
- "99c4c864-c08a-4368-9d42-99a1bb24ce78"
+ "8a63dd76-a0c2-468c-b796-a553c20475f4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T193746Z:99c4c864-c08a-4368-9d42-99a1bb24ce78"
+ "WESTCENTRALUS:20210716T211156Z:8a63dd76-a0c2-468c-b796-a553c20475f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3938,7 +4832,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 19:37:46 GMT"
+ "Fri, 16 Jul 2021 21:11:55 GMT"
],
"Expires": [
"-1"
@@ -3953,8 +4847,8 @@
],
"Names": {
"Test-ApiManagementWithAdditionalRegionsCRUD": [
- "ps2974",
- "ps2198"
+ "ps4150",
+ "ps2984"
]
},
"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 b4db0baf2678..2980d7adf317 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/ps9237?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTIzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4328?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDMyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3eee0c70-9b14-4321-91c2-3e316e1b811b"
+ "1fdfc7fd-ac4c-4745-a681-b08d223d99bc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "b7a6a560-2bc5-4030-9673-8e066103e9df"
+ "3cabbb2d-5a16-4dd3-a545-fe21cefd06b6"
],
"x-ms-correlation-request-id": [
- "b7a6a560-2bc5-4030-9673-8e066103e9df"
+ "3cabbb2d-5a16-4dd3-a545-fe21cefd06b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171128Z:b7a6a560-2bc5-4030-9673-8e066103e9df"
+ "WESTUS:20210715T053433Z:3cabbb2d-5a16-4dd3-a545-fe21cefd06b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:11:27 GMT"
+ "Thu, 15 Jul 2021 05:34:33 GMT"
],
"Content-Length": [
"165"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237\",\r\n \"name\": \"ps9237\",\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/ps4328\",\r\n \"name\": \"ps4328\",\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/ps9237/providers/Microsoft.ApiManagement/service/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"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": [
- "ca7360e4-7c07-41f9-9a8f-40974f76baa5"
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,10 +99,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAGSik=\""
+ "\"AAAAAAA5eu8=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -111,8 +111,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "91313652-32f0-4c1f-a18f-989f27cf9f78",
- "18462142-1437-4e27-a853-38245386d35a"
+ "90b7f9f5-9ce6-481e-8a41-6aea304d41a9",
+ "57512b58-8526-4238-98cb-4f739493527a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "2f81bc66-0269-4d2f-974f-d3c80bc0ba14"
+ "314d4f20-077a-4669-b8b7-20a1072cb692"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171132Z:2f81bc66-0269-4d2f-974f-d3c80bc0ba14"
+ "WESTUS:20210715T053439Z:314d4f20-077a-4669-b8b7-20a1072cb692"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:11:32 GMT"
+ "Thu, 15 Jul 2021 05:34:38 GMT"
],
"Content-Length": [
- "1408"
+ "1489"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,26 +142,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273\",\r\n \"name\": \"ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSik=\",\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\": \"2020-04-20T17:11:30.8008724Z\",\r\n \"gatewayUrl\": null,\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\": null,\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\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}",
+ "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}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"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\": \"ps1273.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.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 \"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\": \"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7326438d-b721-4fc2-83aa-c15dc81882d2"
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -178,10 +178,10 @@
"no-cache"
],
"ETag": [
- "\"AAAAAAAGSnk=\""
+ "\"AAAAAAA5e7A=\""
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -190,8 +190,8 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "99a1b32f-e12d-492b-8452-6d5815e58c4e",
- "cbea5533-a982-4eeb-a97c-03b80161ed88"
+ "0ee285cd-eabd-450f-8eb2-b4c88d605bc7",
+ "34b73aad-2e00-4eab-8dc3-41d1c8edf3df"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -200,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "db0f6fc1-c034-454d-bb64-fb73b68d7b29"
+ "305a6bf7-3c7b-431a-a706-160ed67e593a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174246Z:db0f6fc1-c034-454d-bb64-fb73b68d7b29"
+ "WESTUS:20210715T060752Z:305a6bf7-3c7b-431a-a706-160ed67e593a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:42:46 GMT"
+ "Thu, 15 Jul 2021 06:07:51 GMT"
],
"Content-Length": [
- "2309"
+ "2347"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -221,20 +221,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273\",\r\n \"name\": \"ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSnk=\",\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\": \"2020-04-20T17:11:30.8008724Z\",\r\n \"gatewayUrl\": \"https://ps1273.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1273-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1273.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps1273.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1273.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1273.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1273.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.92.190.17\"\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}",
+ "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}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -245,7 +248,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -254,7 +257,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6210c68-b730-48a8-bde9-8ecdb5969a84"
+ "64c00726-e3c5-4588-9e13-1ad800d76642"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -263,16 +266,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "563c27a9-bab4-4587-950c-75647a000298"
+ "1e24b8bc-dde8-44d2-8368-5db0f309ebcf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171233Z:563c27a9-bab4-4587-950c-75647a000298"
+ "WESTUS:20210715T053539Z:1e24b8bc-dde8-44d2-8368-5db0f309ebcf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:12:33 GMT"
+ "Thu, 15 Jul 2021 05:35:38 GMT"
],
"Expires": [
"-1"
@@ -285,16 +288,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -305,7 +311,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -314,7 +320,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4cd46060-710e-40b5-a60c-b84971149eb6"
+ "cf826579-ce7c-4b95-a05c-0f116477dec8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -323,16 +329,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "3b8daadf-f01a-443e-977f-9522fa2588d3"
+ "748afd0e-8d49-4a32-aabb-ec96501233b8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171333Z:3b8daadf-f01a-443e-977f-9522fa2588d3"
+ "WESTUS:20210715T053639Z:748afd0e-8d49-4a32-aabb-ec96501233b8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:13:32 GMT"
+ "Thu, 15 Jul 2021 05:36:39 GMT"
],
"Expires": [
"-1"
@@ -345,16 +351,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -365,7 +374,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -374,7 +383,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7bd7d9af-0757-4810-90ab-a40f23fba60f"
+ "698df0b7-eab8-4040-996f-1d9ccf116f22"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -383,16 +392,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "004bd2ad-312d-4c35-8515-802cf7bebb72"
+ "64d2f58a-ebe1-4606-83b4-250575e9bd79"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171434Z:004bd2ad-312d-4c35-8515-802cf7bebb72"
+ "WESTUS:20210715T053740Z:64d2f58a-ebe1-4606-83b4-250575e9bd79"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:14:33 GMT"
+ "Thu, 15 Jul 2021 05:37:39 GMT"
],
"Expires": [
"-1"
@@ -405,16 +414,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -425,7 +437,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -434,7 +446,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac7f4405-5566-47ec-9e26-426cb6ab8d11"
+ "56687264-400a-4fe1-b5f4-639878e1e64a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -443,16 +455,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "65eed7b0-7ed1-4d93-b045-678a35efee9b"
+ "53251efa-9c6d-4618-b46e-05ba805e6a1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171534Z:65eed7b0-7ed1-4d93-b045-678a35efee9b"
+ "WESTUS:20210715T053840Z:53251efa-9c6d-4618-b46e-05ba805e6a1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:15:33 GMT"
+ "Thu, 15 Jul 2021 05:38:40 GMT"
],
"Expires": [
"-1"
@@ -465,16 +477,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -485,7 +500,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -494,7 +509,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a24ad42-f088-43da-a04c-4120391285da"
+ "6b36811d-d38d-49e2-8280-079eb311e480"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -503,16 +518,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "971369f3-3601-46e2-a6aa-50c7ed3117b7"
+ "7df38a19-d2f1-4226-abdc-6d67c33b262b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171634Z:971369f3-3601-46e2-a6aa-50c7ed3117b7"
+ "WESTUS:20210715T053940Z:7df38a19-d2f1-4226-abdc-6d67c33b262b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:16:34 GMT"
+ "Thu, 15 Jul 2021 05:39:39 GMT"
],
"Expires": [
"-1"
@@ -525,16 +540,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -545,7 +563,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -554,7 +572,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "07fad773-12ad-41fe-b208-eaf386b8b3ee"
+ "46222b55-dbfe-4aa5-a203-e50be46fbc12"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -563,16 +581,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "e509faeb-176c-463c-ba72-ce60dd27b3fc"
+ "a74843cf-4bc3-4a39-858d-4a157a29caa9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171735Z:e509faeb-176c-463c-ba72-ce60dd27b3fc"
+ "WESTUS:20210715T054041Z:a74843cf-4bc3-4a39-858d-4a157a29caa9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:17:35 GMT"
+ "Thu, 15 Jul 2021 05:40:40 GMT"
],
"Expires": [
"-1"
@@ -585,16 +603,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -605,7 +626,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -614,7 +635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6f64dba5-d557-41e1-8d3b-61f34083e29d"
+ "bb8e9c17-aac6-4b11-a779-2825c1643774"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -623,16 +644,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "a6157952-4243-4e61-a71d-e41037feb99a"
+ "8704349c-b053-4b53-83a7-af33fa532d2a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171835Z:a6157952-4243-4e61-a71d-e41037feb99a"
+ "WESTUS:20210715T054141Z:8704349c-b053-4b53-83a7-af33fa532d2a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:18:34 GMT"
+ "Thu, 15 Jul 2021 05:41:40 GMT"
],
"Expires": [
"-1"
@@ -645,16 +666,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -665,7 +689,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -674,7 +698,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "91bec46c-3fed-40a2-8dce-55bb8727afe2"
+ "79276268-e513-43b8-b7cd-2aa3cc7863e3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -683,16 +707,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "aff1197c-b754-4fcb-90dc-f9e9c9bc0dc9"
+ "152b5d3b-c49e-4b9a-b0a7-cb656d8eb94a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T171935Z:aff1197c-b754-4fcb-90dc-f9e9c9bc0dc9"
+ "WESTUS:20210715T054241Z:152b5d3b-c49e-4b9a-b0a7-cb656d8eb94a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:19:35 GMT"
+ "Thu, 15 Jul 2021 05:42:41 GMT"
],
"Expires": [
"-1"
@@ -705,16 +729,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -725,7 +752,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -734,7 +761,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "826d24a9-4d3e-4598-9bb4-7ad04e7fb970"
+ "3e0672a2-9d48-45a9-9beb-34a7d06debb5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -743,16 +770,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "f5f9da7b-a0f3-4f01-96d6-a43e1ebf61a2"
+ "80d905f1-5289-4bb1-a955-28f3f29b0f17"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172036Z:f5f9da7b-a0f3-4f01-96d6-a43e1ebf61a2"
+ "WESTUS:20210715T054342Z:80d905f1-5289-4bb1-a955-28f3f29b0f17"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:20:35 GMT"
+ "Thu, 15 Jul 2021 05:43:41 GMT"
],
"Expires": [
"-1"
@@ -765,16 +792,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -785,7 +815,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -794,7 +824,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "534322a6-09c1-4f7e-b36c-d45b7562bfd9"
+ "13677681-8ce9-4ec2-bbc3-524e8b8dad3e"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -803,16 +833,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "9192e968-e31d-4e1d-b369-3620d1d09d5a"
+ "77f44696-6038-4852-9c5e-e6f4f81b93da"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172136Z:9192e968-e31d-4e1d-b369-3620d1d09d5a"
+ "WESTUS:20210715T054442Z:77f44696-6038-4852-9c5e-e6f4f81b93da"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:21:36 GMT"
+ "Thu, 15 Jul 2021 05:44:42 GMT"
],
"Expires": [
"-1"
@@ -825,16 +855,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -845,7 +878,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -854,7 +887,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84244922-a626-45a3-9b1c-af44eb16a607"
+ "231df773-4ad5-4b9a-9aa4-d46e28bfaaa3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -863,16 +896,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "37cf69cd-e293-405c-ac32-f07b754748db"
+ "1ccbfc7f-3b3a-4304-8944-97baed06de3b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172237Z:37cf69cd-e293-405c-ac32-f07b754748db"
+ "WESTUS:20210715T054542Z:1ccbfc7f-3b3a-4304-8944-97baed06de3b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:22:36 GMT"
+ "Thu, 15 Jul 2021 05:45:42 GMT"
],
"Expires": [
"-1"
@@ -885,16 +918,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -905,7 +941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -914,7 +950,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52825d07-31d3-4b0b-99ce-c60ca599d8af"
+ "863a057d-56c3-4e56-84cf-4e2ad5dc0d2f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -923,16 +959,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "f81beb5e-f96b-4cc8-b2e7-7413983a87fa"
+ "7b33ad97-9b95-48c7-8324-4ed38c084797"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172337Z:f81beb5e-f96b-4cc8-b2e7-7413983a87fa"
+ "WESTUS:20210715T054643Z:7b33ad97-9b95-48c7-8324-4ed38c084797"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:23:37 GMT"
+ "Thu, 15 Jul 2021 05:46:42 GMT"
],
"Expires": [
"-1"
@@ -945,16 +981,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -965,7 +1004,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -974,7 +1013,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d07f8ca1-2822-4673-b748-ac1de88fe300"
+ "008c1deb-4b01-48aa-a869-02ed27678104"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -983,16 +1022,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "7d8ce917-75bb-41ae-8e34-337a445cc3d0"
+ "2b5dffef-a9fc-4fd6-bfa4-bc0430872086"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172438Z:7d8ce917-75bb-41ae-8e34-337a445cc3d0"
+ "WESTUS:20210715T054743Z:2b5dffef-a9fc-4fd6-bfa4-bc0430872086"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:24:37 GMT"
+ "Thu, 15 Jul 2021 05:47:43 GMT"
],
"Expires": [
"-1"
@@ -1005,16 +1044,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1025,7 +1067,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1034,7 +1076,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5023aa2-7a79-4dbe-80f8-f4bd747b00c0"
+ "050ebb9f-5177-4a2b-99ac-b00dc5009d3f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1043,16 +1085,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "39f23e7d-6933-484b-aca1-e926da14137d"
+ "5c15f8af-dfcb-4692-bc0d-bbf0b69ec743"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172538Z:39f23e7d-6933-484b-aca1-e926da14137d"
+ "WESTUS:20210715T054844Z:5c15f8af-dfcb-4692-bc0d-bbf0b69ec743"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:25:37 GMT"
+ "Thu, 15 Jul 2021 05:48:43 GMT"
],
"Expires": [
"-1"
@@ -1065,16 +1107,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1085,7 +1130,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1094,7 +1139,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89b205b9-3066-4e3e-9d9b-59ec07d517c8"
+ "b8800f6f-d2b8-457b-9d62-4c89766a76e8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1103,16 +1148,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "b242fa23-8436-4ace-922f-5ac229b2ff39"
+ "8868716c-83c5-4817-8d3f-2385db6b1531"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172638Z:b242fa23-8436-4ace-922f-5ac229b2ff39"
+ "WESTUS:20210715T054944Z:8868716c-83c5-4817-8d3f-2385db6b1531"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:26:38 GMT"
+ "Thu, 15 Jul 2021 05:49:44 GMT"
],
"Expires": [
"-1"
@@ -1125,16 +1170,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1145,7 +1193,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1154,7 +1202,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dd18b93d-eed8-4388-a1bf-c6603febce09"
+ "5cb5efcf-3023-4a4f-9d0b-9ac25554c5d8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1163,16 +1211,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "50d822c4-0689-451b-9a4e-6597d0b1957c"
+ "6c834cb6-1bd9-4d7c-abaa-b0a5689c81a7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172738Z:50d822c4-0689-451b-9a4e-6597d0b1957c"
+ "WESTUS:20210715T055044Z:6c834cb6-1bd9-4d7c-abaa-b0a5689c81a7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:27:38 GMT"
+ "Thu, 15 Jul 2021 05:50:44 GMT"
],
"Expires": [
"-1"
@@ -1185,16 +1233,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1205,7 +1256,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1214,7 +1265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d9f7ec36-80d9-4dbd-a09d-21e17315f104"
+ "091ee5ca-61ae-4116-aba1-5727279342a5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1223,16 +1274,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "25f72a7b-90e9-4d84-a7ad-1ea23b59c771"
+ "7ace1720-a0fb-4505-9c3a-773c79893d3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172839Z:25f72a7b-90e9-4d84-a7ad-1ea23b59c771"
+ "WESTUS:20210715T055144Z:7ace1720-a0fb-4505-9c3a-773c79893d3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:28:38 GMT"
+ "Thu, 15 Jul 2021 05:51:44 GMT"
],
"Expires": [
"-1"
@@ -1245,16 +1296,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1265,7 +1319,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1274,7 +1328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e04e4284-a5db-4411-85d9-cd14e4c24171"
+ "520c1fae-8866-4ea3-99aa-e13178a36d7a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1283,16 +1337,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "dd9954ce-1c18-48a2-a5dc-2ea886d9adbe"
+ "0ae94e41-00b9-41e2-8bb9-5d7746eb2271"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T172939Z:dd9954ce-1c18-48a2-a5dc-2ea886d9adbe"
+ "WESTUS:20210715T055245Z:0ae94e41-00b9-41e2-8bb9-5d7746eb2271"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:29:39 GMT"
+ "Thu, 15 Jul 2021 05:52:44 GMT"
],
"Expires": [
"-1"
@@ -1305,16 +1359,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1325,7 +1382,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1334,25 +1391,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fea251a2-40b2-4eeb-a23f-80c7739004d1"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "c478bb2f-693d-4790-a392-1bd176fd6dee"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
"x-ms-correlation-request-id": [
- "db53dea5-ca8d-4818-9680-b60a6c2a1a8f"
+ "c0e8f272-a8ce-43e6-a888-656a03a96f24"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173039Z:db53dea5-ca8d-4818-9680-b60a6c2a1a8f"
+ "WESTUS:20210715T055345Z:c0e8f272-a8ce-43e6-a888-656a03a96f24"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:30:39 GMT"
+ "Thu, 15 Jul 2021 05:53:45 GMT"
],
"Expires": [
"-1"
@@ -1365,16 +1422,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1385,7 +1445,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1394,7 +1454,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a38e862-9aa4-4b1e-8650-7ad41e9a4e05"
+ "b9025bb0-4798-4257-83b3-d95117d46937"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1403,16 +1463,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "943e390f-ae85-4561-8639-97b71d532f3c"
+ "9f2dad10-8b4e-438f-a2cd-9534f6592c39"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173140Z:943e390f-ae85-4561-8639-97b71d532f3c"
+ "WESTUS:20210715T055445Z:9f2dad10-8b4e-438f-a2cd-9534f6592c39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:31:39 GMT"
+ "Thu, 15 Jul 2021 05:54:44 GMT"
],
"Expires": [
"-1"
@@ -1425,16 +1485,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1445,7 +1508,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1454,7 +1517,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4994b613-c005-4794-a508-a9c18c60c824"
+ "26961567-2a1f-4b15-b051-a03969c145ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1463,16 +1526,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "0a288c76-9240-400b-b91a-d10e0c838fc1"
+ "95030a10-16e6-48d8-afad-495cdcbf91d9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173240Z:0a288c76-9240-400b-b91a-d10e0c838fc1"
+ "WESTUS:20210715T055546Z:95030a10-16e6-48d8-afad-495cdcbf91d9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:32:39 GMT"
+ "Thu, 15 Jul 2021 05:55:45 GMT"
],
"Expires": [
"-1"
@@ -1485,16 +1548,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1505,7 +1571,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1514,7 +1580,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aba7d8cf-2428-4728-b2c7-920b5f53f1af"
+ "6a84936a-fc43-49e5-991a-d9a1ccbb46e2"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1523,16 +1589,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "a512d46a-fb2b-4296-96ed-79caf1be34db"
+ "5d03f372-fbd3-45ac-b785-80c73d134cbe"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173340Z:a512d46a-fb2b-4296-96ed-79caf1be34db"
+ "WESTUS:20210715T055646Z:5d03f372-fbd3-45ac-b785-80c73d134cbe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:33:40 GMT"
+ "Thu, 15 Jul 2021 05:56:45 GMT"
],
"Expires": [
"-1"
@@ -1545,16 +1611,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1565,7 +1634,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1574,7 +1643,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77373440-3a7b-4bee-bbec-47dd0ba70b8b"
+ "66de6289-6691-4eb1-ab3a-71b26169bbbf"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1583,16 +1652,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "c14a7286-627c-41a2-8e03-0fcef2f7f3e3"
+ "d0207259-7b01-4f89-b56c-a01a099087b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173441Z:c14a7286-627c-41a2-8e03-0fcef2f7f3e3"
+ "WESTUS:20210715T055746Z:d0207259-7b01-4f89-b56c-a01a099087b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:34:40 GMT"
+ "Thu, 15 Jul 2021 05:57:46 GMT"
],
"Expires": [
"-1"
@@ -1605,16 +1674,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1625,7 +1697,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1634,7 +1706,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "80604444-8b5c-49cd-b4af-dec1ab8173b6"
+ "e95a3fcd-189e-4369-9bb7-efd57cf7d334"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1643,16 +1715,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "de78232d-b4e9-429e-b81d-29e02d3d52fe"
+ "312db683-9a34-4ce3-8cf3-638e485a7c7b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173541Z:de78232d-b4e9-429e-b81d-29e02d3d52fe"
+ "WESTUS:20210715T055847Z:312db683-9a34-4ce3-8cf3-638e485a7c7b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:35:41 GMT"
+ "Thu, 15 Jul 2021 05:58:46 GMT"
],
"Expires": [
"-1"
@@ -1665,16 +1737,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1685,7 +1760,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1694,7 +1769,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aaa49588-dae3-499a-892c-08183cdcd444"
+ "175691be-f394-4100-bd9c-5ef0462d8c81"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1703,16 +1778,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "89b5ecf5-8656-481c-9d89-c928dd90a08f"
+ "4032bccd-30d8-4539-83bf-f3ee1704a0eb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173641Z:89b5ecf5-8656-481c-9d89-c928dd90a08f"
+ "WESTUS:20210715T055947Z:4032bccd-30d8-4539-83bf-f3ee1704a0eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:36:41 GMT"
+ "Thu, 15 Jul 2021 05:59:47 GMT"
],
"Expires": [
"-1"
@@ -1725,16 +1800,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1745,7 +1823,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1754,7 +1832,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d8d4c5a3-b553-46e9-a60f-6f2af27b0161"
+ "988e3f10-515c-4532-9d84-8e65cd88c29c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1763,16 +1841,16 @@
"11974"
],
"x-ms-correlation-request-id": [
- "2b2966ce-970e-4794-b904-06b82fc0ea0f"
+ "1769673c-657d-4917-8527-a354a68e0394"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173742Z:2b2966ce-970e-4794-b904-06b82fc0ea0f"
+ "WESTUS:20210715T060047Z:1769673c-657d-4917-8527-a354a68e0394"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:37:41 GMT"
+ "Thu, 15 Jul 2021 06:00:47 GMT"
],
"Expires": [
"-1"
@@ -1785,16 +1863,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1805,7 +1886,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1814,7 +1895,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "da3f4d1d-cc37-410b-b955-8dc2229ed651"
+ "8f8d9666-5768-4547-b914-edc5a2920a7d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1823,16 +1904,16 @@
"11973"
],
"x-ms-correlation-request-id": [
- "60ad84a9-cd89-40ad-9bac-7e8b5f9e1b45"
+ "07dfeb52-31a3-42fb-9763-0fda94c44346"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173842Z:60ad84a9-cd89-40ad-9bac-7e8b5f9e1b45"
+ "WESTUS:20210715T060148Z:07dfeb52-31a3-42fb-9763-0fda94c44346"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:38:41 GMT"
+ "Thu, 15 Jul 2021 06:01:48 GMT"
],
"Expires": [
"-1"
@@ -1845,16 +1926,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1865,7 +1949,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1874,7 +1958,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a1d457e-db72-4b90-8a6e-019f36d89dcb"
+ "ce3fd376-a39d-4932-8adb-57bf0e9a398c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1883,16 +1967,16 @@
"11972"
],
"x-ms-correlation-request-id": [
- "9704e22f-81d1-4be3-8b26-dc30b64835ba"
+ "58a84704-575a-46da-a724-f09acef20b16"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T173943Z:9704e22f-81d1-4be3-8b26-dc30b64835ba"
+ "WESTUS:20210715T060248Z:58a84704-575a-46da-a724-f09acef20b16"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:39:42 GMT"
+ "Thu, 15 Jul 2021 06:02:47 GMT"
],
"Expires": [
"-1"
@@ -1905,16 +1989,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1925,7 +2012,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1934,7 +2021,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9a759ae-408b-458c-a317-563b146bb5e2"
+ "69ae788a-3900-444d-adc2-dc96f35423ce"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1943,16 +2030,16 @@
"11971"
],
"x-ms-correlation-request-id": [
- "f26be86a-5efb-4285-b6f2-e8a54b2cf9db"
+ "e00761ba-0566-463a-b958-95366ab4e4b0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174043Z:f26be86a-5efb-4285-b6f2-e8a54b2cf9db"
+ "WESTUS:20210715T060348Z:e00761ba-0566-463a-b958-95366ab4e4b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:40:42 GMT"
+ "Thu, 15 Jul 2021 06:03:48 GMT"
],
"Expires": [
"-1"
@@ -1965,16 +2052,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -1985,7 +2075,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -1994,25 +2084,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9a2960b0-667e-41e0-887a-ff9087c2fbbb"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "92b656fc-7211-4698-81dc-6574eb3dacb0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
"x-ms-correlation-request-id": [
- "248d37a4-c2aa-4b8c-a9c7-3b9eb326e0bf"
+ "7dd6c7c1-52d9-43f9-b70b-369ad32e0d24"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174143Z:248d37a4-c2aa-4b8c-a9c7-3b9eb326e0bf"
+ "WESTUS:20210715T060448Z:7dd6c7c1-52d9-43f9-b70b-369ad32e0d24"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:41:43 GMT"
+ "Thu, 15 Jul 2021 06:04:47 GMT"
],
"Expires": [
"-1"
@@ -2025,16 +2115,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19BY3RfMjk1MzIyMWM=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5QlkzUmZNamsxTXpJeU1XTT0/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2044,11 +2137,17 @@
"Pragma": [
"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"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "48785122-3888-4965-9d8e-548d7aa221a6"
+ "a023728b-e011-47f1-b5e5-32b1e318771a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2057,47 +2156,41 @@
"11969"
],
"x-ms-correlation-request-id": [
- "3d3bb530-d0f4-40cb-af5a-51ff81946eb9"
+ "f3299569-8860-426b-9e13-5d1b9a0c670e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174244Z:3d3bb530-d0f4-40cb-af5a-51ff81946eb9"
+ "WESTUS:20210715T060549Z:f3299569-8860-426b-9e13-5d1b9a0c670e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:42:43 GMT"
- ],
- "Content-Length": [
- "2301"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 06:05:48 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273\",\r\n \"name\": \"ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSnE=\",\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\": \"2020-04-20T17:11:30.8008724Z\",\r\n \"gatewayUrl\": \"https://ps1273.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1273-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1273.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps1273.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1273.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1273.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1273.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.92.190.17\"\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}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/networkstatus?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62a7accf-e020-4917-8a94-b173a4211489"
- ],
- "Accept-Language": [
- "en-US"
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2107,11 +2200,17 @@
"Pragma": [
"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"
+ ],
+ "Retry-After": [
+ "60"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a6ca2578-afdc-4370-9b84-52a218e4c889"
+ "53edf2bc-1164-468e-a957-72c458476a78"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2120,47 +2219,41 @@
"11968"
],
"x-ms-correlation-request-id": [
- "6c78ee7d-9d6d-4721-8dd6-d3b2ce829c43"
+ "a2701481-2611-4c29-ac2a-3ca9dd607828"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174244Z:6c78ee7d-9d6d-4721-8dd6-d3b2ce829c43"
+ "WESTUS:20210715T060649Z:a2701481-2611-4c29-ac2a-3ca9dd607828"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:42:44 GMT"
- ],
- "Content-Length": [
- "2018"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Thu, 15 Jul 2021 06:06:48 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\": \"apimstv1jzdytrcfts0vkt15.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.2965749Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:49.104282Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.3434805Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:48.9949021Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.6453726Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:49.2765847Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.6453726Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:49.1511588Z\"\r\n },\r\n {\r\n \"name\": \"apirpsqleqke6wrb3thocuo3.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.2497115Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:48.0616962Z\"\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.2199672Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:47.7944836Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:48.9207533Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:47.2293425Z\"\r\n },\r\n {\r\n \"name\": \"https://prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.7184695Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:49.0117853Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:49.2340492Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:48.7762215Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:50.3922241Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:41:50.3922241Z\"\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T17:41:50.609126Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:31:49.8386834Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/networkstatus?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9BY3RfMmYyYWE2NDQ=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5QlkzUmZNbVl5WVdFMk5EUT0/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de305f95-4c93-4772-9599-abf05e1f6b93"
- ],
- "Accept-Language": [
- "en-US"
+ "a9bb2629-7902-478a-88a2-7e88f5eb5ac5"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2174,28 +2267,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fa84f213-bdb9-4a8b-bbc1-955d5251994a"
+ "a80111ef-58af-4b41-b478-6686ef1c963c"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11944"
+ "11967"
],
"x-ms-correlation-request-id": [
- "2e5dae0a-4ff4-45a3-b902-3d12cf2931db"
+ "32d02538-bf5f-4dd7-a65b-3d0bc81311ba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180455Z:2e5dae0a-4ff4-45a3-b902-3d12cf2931db"
+ "WESTUS:20210715T060749Z:32d02538-bf5f-4dd7-a65b-3d0bc81311ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:04:55 GMT"
+ "Thu, 15 Jul 2021 06:07:48 GMT"
],
"Content-Length": [
- "3696"
+ "2339"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2204,26 +2297,26 @@
"-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\": \"apimstv1jzdytrcfts0vkt15.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:46.3967786Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:46.3202395Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.file.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:46.5529855Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:44.6447738Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:46.3498851Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:44.3039913Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:46.3498851Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:44.3039913Z\"\r\n },\r\n {\r\n \"name\": \"apirpsqleqke6wrb3thocuo3.database.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:47.568652Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:46.3322461Z\"\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:51.9285992Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:44.6943326Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:47.381149Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:44.6291067Z\"\r\n },\r\n {\r\n \"name\": \"https://prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:47.568652Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:44.8635075Z\"\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:48.4905355Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:46.9416503Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:46.4592796Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:46.349802Z\"\r\n },\r\n {\r\n \"name\": \"Scm\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:47.381149Z\",\r\n \"lastStatusChange\": \"2020-04-20T18:04:47.381149Z\"\r\n },\r\n {\r\n \"name\": \"smtpi-co1.msn.com:25028\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:47.9905462Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:46.349802Z\"\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\": \"apimst1h0u8ouzkkf4v2aucr.blob.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:36.3207807Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.238033Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.queue.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:36.5864046Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.3787309Z\"\r\n },\r\n {\r\n \"name\": \"apimstv1jzdytrcfts0vkt15.table.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:36.4614056Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.2070941Z\"\r\n },\r\n {\r\n \"name\": \"gcs.prod.monitoring.core.windows.net\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:36.3520299Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.3334847Z\"\r\n },\r\n {\r\n \"name\": \"https://prod3.metrics.nsatc.net:1886/RecoveryService\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:37.2270426Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.4255953Z\"\r\n },\r\n {\r\n \"name\": \"https://southcentralus.prod.warm.ingestion.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:36.3832379Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.3334847Z\"\r\n },\r\n {\r\n \"name\": \"LocalGatewayRedis\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:37.305143Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.2536514Z\"\r\n },\r\n {\r\n \"name\": \"prod.warmpath.msftcloudes.com\",\r\n \"status\": \"success\",\r\n \"error\": \"\",\r\n \"lastUpdated\": \"2020-04-20T18:04:36.367625Z\",\r\n \"lastStatusChange\": \"2020-04-20T17:54:36.3334847Z\"\r\n }\r\n ]\r\n }\r\n }\r\n]",
+ "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
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/networkstatus?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8c744d9-08d7-45c9-b9b1-c692bdd4c7b1"
+ "b151f5a2-f628-46f5-aa9b-13e5f90b5d9f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2233,35 +2326,32 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"AAAAAAAGSnE=\""
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8ea869ef-b58d-4336-97f3-0ad574941ea0"
+ "3b198823-7b2f-48d8-9b1c-f7d85bb3839d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11966"
],
"x-ms-correlation-request-id": [
- "104a3d2e-c763-4bfc-abb4-3dd43f24918b"
+ "0f0ccc72-a45c-478d-a4ca-efafee9c40d3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174244Z:104a3d2e-c763-4bfc-abb4-3dd43f24918b"
+ "WESTUS:20210715T060750Z:0f0ccc72-a45c-478d-a4ca-efafee9c40d3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:42:44 GMT"
+ "Thu, 15 Jul 2021 06:07:49 GMT"
],
"Content-Length": [
- "2301"
+ "2972"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2270,20 +2360,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273\",\r\n \"name\": \"ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSnE=\",\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\": \"2020-04-20T17:11:30.8008724Z\",\r\n \"gatewayUrl\": \"https://ps1273.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1273-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1273.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps1273.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1273.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1273.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1273.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"13.92.190.17\"\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}",
+ "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
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/networkstatus?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvbmV0d29ya3N0YXR1cz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39115799-177f-4192-b19b-0b516cf6e6c6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2293,57 +2389,60 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
- ],
- "Retry-After": [
- "60"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "715e071f-451b-4529-acd4-56cd1e414bdc"
+ "9c7d3863-f209-4ceb-bc25-bfa53339faf0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11945"
],
"x-ms-correlation-request-id": [
- "304ba5b2-2be5-4dcf-98fa-aa43150debba"
+ "ac77cad2-6f01-4152-955b-e46f171fa518"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174346Z:304ba5b2-2be5-4dcf-98fa-aa43150debba"
+ "WESTUS:20210715T062659Z:ac77cad2-6f01-4152-955b-e46f171fa518"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:43:46 GMT"
+ "Thu, 15 Jul 2021 06:26:58 GMT"
+ ],
+ "Content-Length": [
+ "5337"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "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
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTk/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f6277b0-6b1e-44a6-91e5-3e6089a4d849"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2353,17 +2452,14 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
- ],
- "Retry-After": [
- "60"
+ "ETag": [
+ "\"AAAAAAA5e60=\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e3cbd6c1-22f7-4ec9-b25d-62bd7ee17faa"
+ "56103de9-7c42-4eda-9f35-aa349a4c0205"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2372,38 +2468,44 @@
"11965"
],
"x-ms-correlation-request-id": [
- "1b8962d6-0eb0-4d48-994a-0e355334b076"
+ "89370ba8-6157-4a96-8225-f2757d943cba"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174447Z:1b8962d6-0eb0-4d48-994a-0e355334b076"
+ "WESTUS:20210715T060750Z:89370ba8-6157-4a96-8225-f2757d943cba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:44:46 GMT"
+ "Thu, 15 Jul 2021 06:07:49 GMT"
+ ],
+ "Content-Length": [
+ "2339"
+ ],
+ "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/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
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2414,7 +2516,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2423,7 +2525,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "31bcc4bc-bffc-4cef-a3d3-e4e3b733ec98"
+ "8a738c6f-a263-4c3d-babe-90eb96d21425"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2432,16 +2534,16 @@
"11964"
],
"x-ms-correlation-request-id": [
- "d66a402b-2637-4476-ac2b-d03fe5f7a500"
+ "cd2528e0-d683-4297-b39c-36e56a16241f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174547Z:d66a402b-2637-4476-ac2b-d03fe5f7a500"
+ "WESTUS:20210715T060852Z:cd2528e0-d683-4297-b39c-36e56a16241f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:45:47 GMT"
+ "Thu, 15 Jul 2021 06:08:52 GMT"
],
"Expires": [
"-1"
@@ -2454,16 +2556,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2474,7 +2579,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2483,7 +2588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "596e51f6-e570-46ff-9711-f01a5d7617aa"
+ "f2e27e86-6981-4e03-8f73-44875e42104b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2492,16 +2597,16 @@
"11963"
],
"x-ms-correlation-request-id": [
- "59d5b157-dd0e-4ea4-a7a2-51565e42de73"
+ "7c420959-3c34-4de0-b6af-a314afd46238"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174647Z:59d5b157-dd0e-4ea4-a7a2-51565e42de73"
+ "WESTUS:20210715T060952Z:7c420959-3c34-4de0-b6af-a314afd46238"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:46:47 GMT"
+ "Thu, 15 Jul 2021 06:09:51 GMT"
],
"Expires": [
"-1"
@@ -2514,16 +2619,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2534,7 +2642,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2543,7 +2651,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "afc0c411-f813-46b9-90d9-40d55dcdb7d5"
+ "dd46a64e-8c24-41b4-8f6b-b165b7aabbf5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2552,16 +2660,16 @@
"11962"
],
"x-ms-correlation-request-id": [
- "5820a3b0-17f3-40cf-a2db-c34492b9e988"
+ "3276dc0b-1c80-4947-a78e-ba219b22ac54"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174748Z:5820a3b0-17f3-40cf-a2db-c34492b9e988"
+ "WESTUS:20210715T061053Z:3276dc0b-1c80-4947-a78e-ba219b22ac54"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:47:48 GMT"
+ "Thu, 15 Jul 2021 06:10:52 GMT"
],
"Expires": [
"-1"
@@ -2574,16 +2682,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2594,7 +2705,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2603,7 +2714,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69e1ae79-b2e0-4dcb-b4d3-e6b3d1c89450"
+ "bcae861c-f817-4ec7-a053-b478ea04ec32"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2612,16 +2723,16 @@
"11961"
],
"x-ms-correlation-request-id": [
- "8ef7a621-6675-4d10-a8b6-19586c7133d9"
+ "eea45f57-6db6-4e40-99b9-bda2bcbec0f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174848Z:8ef7a621-6675-4d10-a8b6-19586c7133d9"
+ "WESTUS:20210715T061153Z:eea45f57-6db6-4e40-99b9-bda2bcbec0f6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:48:48 GMT"
+ "Thu, 15 Jul 2021 06:11:53 GMT"
],
"Expires": [
"-1"
@@ -2634,16 +2745,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2654,7 +2768,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2663,7 +2777,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "980b5603-64bb-4660-b499-8dde00ea368f"
+ "d3af6d43-a2d7-45fd-8e91-5d655515b375"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2672,16 +2786,16 @@
"11960"
],
"x-ms-correlation-request-id": [
- "17dc4fb5-b62a-459e-b0d9-84a6aba9ff0d"
+ "6d3589aa-1f3d-41f1-a188-d4e97f5925c8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T174949Z:17dc4fb5-b62a-459e-b0d9-84a6aba9ff0d"
+ "WESTUS:20210715T061253Z:6d3589aa-1f3d-41f1-a188-d4e97f5925c8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:49:48 GMT"
+ "Thu, 15 Jul 2021 06:12:53 GMT"
],
"Expires": [
"-1"
@@ -2694,16 +2808,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2714,7 +2831,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2723,7 +2840,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b209c4bb-e1d3-4dff-9e25-0d497ed9cfb4"
+ "9ef3ac5d-bef5-4b47-bffc-31571524fde8"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2732,16 +2849,16 @@
"11959"
],
"x-ms-correlation-request-id": [
- "7b17bee0-d39f-4435-82de-4dde192c15bd"
+ "bc00ae86-edae-46be-abe8-29a38d017925"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175049Z:7b17bee0-d39f-4435-82de-4dde192c15bd"
+ "WESTUS:20210715T061354Z:bc00ae86-edae-46be-abe8-29a38d017925"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:50:48 GMT"
+ "Thu, 15 Jul 2021 06:13:53 GMT"
],
"Expires": [
"-1"
@@ -2754,16 +2871,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2774,7 +2894,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2783,7 +2903,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c42e767b-e2bd-435c-a076-fb7792f7aa1a"
+ "2953602a-081b-41df-bf63-51fc74298fb7"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2792,16 +2912,16 @@
"11958"
],
"x-ms-correlation-request-id": [
- "7834217f-6079-42df-af6b-ca14ad05fe42"
+ "077ca044-91ba-4436-bdb1-fa5f1b6cfdd1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175149Z:7834217f-6079-42df-af6b-ca14ad05fe42"
+ "WESTUS:20210715T061454Z:077ca044-91ba-4436-bdb1-fa5f1b6cfdd1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:51:49 GMT"
+ "Thu, 15 Jul 2021 06:14:53 GMT"
],
"Expires": [
"-1"
@@ -2814,16 +2934,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2834,7 +2957,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2843,7 +2966,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ca4dcdf7-c88d-42d8-9989-cc6f20759bef"
+ "63be476c-1366-468e-9c00-a432cb5e9e9d"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2852,16 +2975,16 @@
"11957"
],
"x-ms-correlation-request-id": [
- "d732da52-4aed-4a77-8332-61c59ec8b398"
+ "bf7a8838-c9d9-487f-9432-892406527b86"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175250Z:d732da52-4aed-4a77-8332-61c59ec8b398"
+ "WESTUS:20210715T061554Z:bf7a8838-c9d9-487f-9432-892406527b86"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:52:49 GMT"
+ "Thu, 15 Jul 2021 06:15:54 GMT"
],
"Expires": [
"-1"
@@ -2874,16 +2997,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2894,7 +3020,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2903,7 +3029,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a6e568b-8922-4635-860e-89473e9ebd99"
+ "d1b7be0c-9409-4b6a-9fba-a68c4af70ffb"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2912,16 +3038,16 @@
"11956"
],
"x-ms-correlation-request-id": [
- "b21ebeb2-539e-48cc-904e-9694cfe7062d"
+ "2e4ebadd-0c24-4418-bad4-923523d52509"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175350Z:b21ebeb2-539e-48cc-904e-9694cfe7062d"
+ "WESTUS:20210715T061655Z:2e4ebadd-0c24-4418-bad4-923523d52509"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:53:50 GMT"
+ "Thu, 15 Jul 2021 06:16:54 GMT"
],
"Expires": [
"-1"
@@ -2934,16 +3060,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -2954,7 +3083,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -2963,25 +3092,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6429da7a-863b-4267-a6ff-dd31c79d54fd"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
+ "b08c2e6c-b8ff-4617-a61f-2e532613b293"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
"x-ms-correlation-request-id": [
- "17a6a6f5-5883-45ea-80e9-825be64096c5"
+ "b27d2220-7086-4cec-9548-0adeb76a318a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175450Z:17a6a6f5-5883-45ea-80e9-825be64096c5"
+ "WESTUS:20210715T061755Z:b27d2220-7086-4cec-9548-0adeb76a318a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:54:50 GMT"
+ "Thu, 15 Jul 2021 06:17:55 GMT"
],
"Expires": [
"-1"
@@ -2994,16 +3123,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3014,7 +3146,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3023,7 +3155,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bc4dab09-9601-48a4-a871-76a5be3de3a3"
+ "d6ef3078-995b-4046-99d0-3cfc301697c3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3032,16 +3164,16 @@
"11954"
],
"x-ms-correlation-request-id": [
- "79d4d3b8-d5c9-4012-942d-cc81f1328240"
+ "a7c0190d-c4c1-4b38-9768-f5d8ddcad129"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175551Z:79d4d3b8-d5c9-4012-942d-cc81f1328240"
+ "WESTUS:20210715T061855Z:a7c0190d-c4c1-4b38-9768-f5d8ddcad129"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:55:51 GMT"
+ "Thu, 15 Jul 2021 06:18:55 GMT"
],
"Expires": [
"-1"
@@ -3054,16 +3186,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3074,7 +3209,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3083,7 +3218,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3096a625-1f14-4cfc-8b36-25a26e882467"
+ "e5bf7765-38f9-4791-92ad-7e1375dde3d3"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3092,16 +3227,16 @@
"11953"
],
"x-ms-correlation-request-id": [
- "c5c5e541-6e97-4632-b149-cbce766a4d1f"
+ "aa4ab8f5-0632-4d67-8190-63f93e7fbf33"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175651Z:c5c5e541-6e97-4632-b149-cbce766a4d1f"
+ "WESTUS:20210715T061955Z:aa4ab8f5-0632-4d67-8190-63f93e7fbf33"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:56:50 GMT"
+ "Thu, 15 Jul 2021 06:19:55 GMT"
],
"Expires": [
"-1"
@@ -3114,16 +3249,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3134,7 +3272,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3143,7 +3281,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a34814f3-b20d-49e5-becd-4e1036cda683"
+ "a29e5053-5643-4346-a7c6-1f82575779a0"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3152,16 +3290,16 @@
"11952"
],
"x-ms-correlation-request-id": [
- "293b4122-3abb-478e-bbb7-7a57c7e06d23"
+ "1085037d-17f1-41c5-84b8-bd8d7c739075"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175751Z:293b4122-3abb-478e-bbb7-7a57c7e06d23"
+ "WESTUS:20210715T062056Z:1085037d-17f1-41c5-84b8-bd8d7c739075"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:57:50 GMT"
+ "Thu, 15 Jul 2021 06:20:55 GMT"
],
"Expires": [
"-1"
@@ -3174,16 +3312,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3194,7 +3335,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3203,7 +3344,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8d468daa-59ec-4824-b2b3-4d55aaa7e907"
+ "627792c5-6f80-4662-97f7-0b49fdf1526b"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3212,16 +3353,16 @@
"11951"
],
"x-ms-correlation-request-id": [
- "e0ef9fef-5953-4c82-92b1-d65925d706d2"
+ "5b53c557-7c05-40f2-91da-fdb1ffd1c289"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175852Z:e0ef9fef-5953-4c82-92b1-d65925d706d2"
+ "WESTUS:20210715T062156Z:5b53c557-7c05-40f2-91da-fdb1ffd1c289"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:58:51 GMT"
+ "Thu, 15 Jul 2021 06:21:56 GMT"
],
"Expires": [
"-1"
@@ -3234,16 +3375,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3254,7 +3398,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3263,25 +3407,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ecd77688-4058-4e6f-a8a4-0927778750a3"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11950"
+ "767d730c-a4b0-4e2b-8da4-223e7deede58"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
"x-ms-correlation-request-id": [
- "0b1236d9-f7cc-4f36-aeaa-6feacb4afa0f"
+ "a157f005-fb0a-4aaf-b624-746bde33a370"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T175952Z:0b1236d9-f7cc-4f36-aeaa-6feacb4afa0f"
+ "WESTUS:20210715T062257Z:a157f005-fb0a-4aaf-b624-746bde33a370"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 17:59:51 GMT"
+ "Thu, 15 Jul 2021 06:22:56 GMT"
],
"Expires": [
"-1"
@@ -3294,16 +3438,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3314,7 +3461,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3323,7 +3470,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2f200520-3b81-4662-a8d1-d470240b08d0"
+ "f3f8f483-5e71-4186-b07a-facb50467751"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3332,16 +3479,16 @@
"11949"
],
"x-ms-correlation-request-id": [
- "410e8e7b-c10f-481f-920a-fa11192bfb25"
+ "420c1028-26c0-4147-a973-0a0414f73cc1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180052Z:410e8e7b-c10f-481f-920a-fa11192bfb25"
+ "WESTUS:20210715T062357Z:420c1028-26c0-4147-a973-0a0414f73cc1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:00:52 GMT"
+ "Thu, 15 Jul 2021 06:23:57 GMT"
],
"Expires": [
"-1"
@@ -3354,16 +3501,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3374,7 +3524,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3383,7 +3533,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4403bccb-2a4a-48ef-b76d-9dd984390bdb"
+ "227c4301-02c1-437e-8f03-6e48615ab2d5"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3392,16 +3542,16 @@
"11948"
],
"x-ms-correlation-request-id": [
- "1b6aa0ec-8c20-466a-8fc5-e748c23f1018"
+ "3f269366-63f5-4f16-a6c2-0684f8a5545e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180153Z:1b6aa0ec-8c20-466a-8fc5-e748c23f1018"
+ "WESTUS:20210715T062457Z:3f269366-63f5-4f16-a6c2-0684f8a5545e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:01:52 GMT"
+ "Thu, 15 Jul 2021 06:24:56 GMT"
],
"Expires": [
"-1"
@@ -3414,16 +3564,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
+ ],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3434,7 +3587,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01"
],
"Retry-After": [
"60"
@@ -3443,7 +3596,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1694438d-68f9-4726-8fea-46d3e1905abf"
+ "95e670b4-5d15-43e9-b281-fa6ae7dadc4a"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -3452,16 +3605,16 @@
"11947"
],
"x-ms-correlation-request-id": [
- "15734bfa-3996-412b-bb28-930905b803db"
+ "53724189-1711-41bd-b449-670ce4e2176c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180253Z:15734bfa-3996-412b-bb28-930905b803db"
+ "WESTUS:20210715T062557Z:53724189-1711-41bd-b449-670ce4e2176c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:02:53 GMT"
+ "Thu, 15 Jul 2021 06:25:56 GMT"
],
"Expires": [
"-1"
@@ -3474,76 +3627,19 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps4328/providers/Microsoft.ApiManagement/service/ps8959/operationresults/ZWFzdHVzOnBzODk1OV9VcGRhdGVfZTIxMzllNWE=?api-version=2020-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzNDMyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczg5NTkvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpPRGsxT1Y5VmNHUmhkR1ZmWlRJeE16bGxOV0U9P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.27817.03",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01"
- ],
- "Retry-After": [
- "60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "41e41c09-ada4-4f59-8ce4-229de740bbad"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11946"
- ],
- "x-ms-correlation-request-id": [
- "e2497099-c6d8-4289-937b-88aadb61e579"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200420T180353Z:e2497099-c6d8-4289-937b-88aadb61e579"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 20 Apr 2020 18:03:53 GMT"
- ],
- "Expires": [
- "-1"
+ "x-ms-client-request-id": [
+ "8eb4f4c9-751b-4f51-9b58-8173786ac45e"
],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273/operationresults/ZWFzdHVzOnBzMTI3M19VcGRhdGVfODYwYTAyMDQ=?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlR3JvdXBzL3BzOTIzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9wczEyNzMvb3BlcmF0aW9ucmVzdWx0cy9aV0Z6ZEhWek9uQnpNVEkzTTE5VmNHUmhkR1ZmT0RZd1lUQXlNRFE9P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/5.0.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/7.0.0.0"
]
},
"ResponseHeaders": {
@@ -3557,28 +3653,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de35c3cd-b573-4a8a-ab02-433e086c7bd0"
+ "c640fd3b-58f8-401c-a0d8-3878e36d168f"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11945"
+ "11946"
],
"x-ms-correlation-request-id": [
- "d048d562-9d8a-4dd8-8db4-c48745357334"
+ "312a2aac-b4d2-416c-84d2-7996c5ab76ca"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180454Z:d048d562-9d8a-4dd8-8db4-c48745357334"
+ "WESTUS:20210715T062658Z:312a2aac-b4d2-416c-84d2-7996c5ab76ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:04:54 GMT"
+ "Thu, 15 Jul 2021 06:26:57 GMT"
],
"Content-Length": [
- "2784"
+ "2835"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3587,26 +3683,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourceGroups/ps9237/providers/Microsoft.ApiManagement/service/ps1273\",\r\n \"name\": \"ps1273\",\r\n \"type\": \"Microsoft.ApiManagement/service\",\r\n \"tags\": {},\r\n \"location\": \"East US\",\r\n \"etag\": \"AAAAAAAGSr4=\",\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\": \"2020-04-20T17:11:30.8008724Z\",\r\n \"gatewayUrl\": \"https://ps1273.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://ps1273-eastus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://ps1273.portal.azure-api.net\",\r\n \"developerPortalUrl\": \"https://ps1273.developer.azure-api.net\",\r\n \"managementApiUrl\": \"https://ps1273.management.azure-api.net\",\r\n \"scmUrl\": \"https://ps1273.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [\r\n {\r\n \"type\": \"Proxy\",\r\n \"hostName\": \"ps1273.azure-api.net\",\r\n \"encodedCertificate\": null,\r\n \"keyVaultId\": null,\r\n \"certificatePassword\": null,\r\n \"negotiateClientCertificate\": false,\r\n \"certificate\": null,\r\n \"defaultSslBinding\": true\r\n }\r\n ],\r\n \"publicIPAddresses\": [\r\n \"40.117.38.47\"\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 \"publicIPAddresses\": [\r\n \"40.74.243.14\"\r\n ],\r\n \"privateIPAddresses\": [\r\n \"172.24.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://ps1273-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}",
+ "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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps9237?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzOTIzNz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/resourcegroups/ps4328?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL3Jlc291cmNlZ3JvdXBzL3BzNDMyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f038119f-4a4c-47cd-ae6c-eccc31ab002e"
+ "1d9a371e-2840-4fb7-b3ca-e06075ba7bc4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3617,7 +3713,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3626,13 +3722,13 @@
"14999"
],
"x-ms-request-id": [
- "bae3fc3a-db71-4099-a68d-eea6cff499cf"
+ "06555c70-8209-4745-84c4-53f9f85f25b1"
],
"x-ms-correlation-request-id": [
- "bae3fc3a-db71-4099-a68d-eea6cff499cf"
+ "06555c70-8209-4745-84c4-53f9f85f25b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180458Z:bae3fc3a-db71-4099-a68d-eea6cff499cf"
+ "WESTUS:20210715T062700Z:06555c70-8209-4745-84c4-53f9f85f25b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3641,7 +3737,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:04:57 GMT"
+ "Thu, 15 Jul 2021 06:27:00 GMT"
],
"Expires": [
"-1"
@@ -3654,16 +3750,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3674,7 +3770,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3683,13 +3779,13 @@
"11999"
],
"x-ms-request-id": [
- "deb3a925-711b-45c0-be60-11224e92bfd2"
+ "0c22b383-4352-43dc-85db-c6a44917e983"
],
"x-ms-correlation-request-id": [
- "deb3a925-711b-45c0-be60-11224e92bfd2"
+ "0c22b383-4352-43dc-85db-c6a44917e983"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180513Z:deb3a925-711b-45c0-be60-11224e92bfd2"
+ "WESTUS:20210715T062716Z:0c22b383-4352-43dc-85db-c6a44917e983"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3698,7 +3794,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:05:12 GMT"
+ "Thu, 15 Jul 2021 06:27:15 GMT"
],
"Expires": [
"-1"
@@ -3711,16 +3807,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3731,7 +3827,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3740,13 +3836,13 @@
"11998"
],
"x-ms-request-id": [
- "162c7af2-6da4-46eb-b8a7-31c2c58cbb10"
+ "47d3259f-c204-4679-8b4f-4625da3d68bf"
],
"x-ms-correlation-request-id": [
- "162c7af2-6da4-46eb-b8a7-31c2c58cbb10"
+ "47d3259f-c204-4679-8b4f-4625da3d68bf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180528Z:162c7af2-6da4-46eb-b8a7-31c2c58cbb10"
+ "WESTUS:20210715T062731Z:47d3259f-c204-4679-8b4f-4625da3d68bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3755,7 +3851,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:05:27 GMT"
+ "Thu, 15 Jul 2021 06:27:30 GMT"
],
"Expires": [
"-1"
@@ -3768,16 +3864,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3788,7 +3884,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3797,13 +3893,13 @@
"11997"
],
"x-ms-request-id": [
- "f79f990e-2207-49db-8892-24ea4b38e5f1"
+ "fe87b978-a294-4830-819c-c4493978eb1c"
],
"x-ms-correlation-request-id": [
- "f79f990e-2207-49db-8892-24ea4b38e5f1"
+ "fe87b978-a294-4830-819c-c4493978eb1c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180543Z:f79f990e-2207-49db-8892-24ea4b38e5f1"
+ "WESTUS:20210715T062746Z:fe87b978-a294-4830-819c-c4493978eb1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3812,7 +3908,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:05:42 GMT"
+ "Thu, 15 Jul 2021 06:27:45 GMT"
],
"Expires": [
"-1"
@@ -3825,16 +3921,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3845,7 +3941,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3854,13 +3950,13 @@
"11996"
],
"x-ms-request-id": [
- "308feb73-61dc-4b79-855f-55d6f8cb7ce2"
+ "d550e79e-9d3a-45ab-843e-f6b3be52afa6"
],
"x-ms-correlation-request-id": [
- "308feb73-61dc-4b79-855f-55d6f8cb7ce2"
+ "d550e79e-9d3a-45ab-843e-f6b3be52afa6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180558Z:308feb73-61dc-4b79-855f-55d6f8cb7ce2"
+ "WESTUS:20210715T062801Z:d550e79e-9d3a-45ab-843e-f6b3be52afa6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3869,7 +3965,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:05:58 GMT"
+ "Thu, 15 Jul 2021 06:28:01 GMT"
],
"Expires": [
"-1"
@@ -3882,16 +3978,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3902,7 +3998,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3911,13 +4007,13 @@
"11995"
],
"x-ms-request-id": [
- "7064034a-0c4d-4c4f-9298-b54819c6d3f1"
+ "d99078b0-3cde-4015-aa50-9737effc20a0"
],
"x-ms-correlation-request-id": [
- "7064034a-0c4d-4c4f-9298-b54819c6d3f1"
+ "d99078b0-3cde-4015-aa50-9737effc20a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180613Z:7064034a-0c4d-4c4f-9298-b54819c6d3f1"
+ "WESTUS:20210715T062816Z:d99078b0-3cde-4015-aa50-9737effc20a0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3926,7 +4022,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:06:13 GMT"
+ "Thu, 15 Jul 2021 06:28:16 GMT"
],
"Expires": [
"-1"
@@ -3939,16 +4035,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -3959,7 +4055,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -3968,13 +4064,13 @@
"11994"
],
"x-ms-request-id": [
- "474eb7cc-143f-4146-a1cc-e7c64a1023eb"
+ "b4179083-6121-409e-8326-664d8d165eb9"
],
"x-ms-correlation-request-id": [
- "474eb7cc-143f-4146-a1cc-e7c64a1023eb"
+ "b4179083-6121-409e-8326-664d8d165eb9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180629Z:474eb7cc-143f-4146-a1cc-e7c64a1023eb"
+ "WESTUS:20210715T062831Z:b4179083-6121-409e-8326-664d8d165eb9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3983,7 +4079,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:06:28 GMT"
+ "Thu, 15 Jul 2021 06:28:31 GMT"
],
"Expires": [
"-1"
@@ -3996,16 +4092,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4016,7 +4112,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4025,13 +4121,13 @@
"11993"
],
"x-ms-request-id": [
- "be7a9224-a1a3-4c8f-9fd5-b37e33495f04"
+ "68b93388-60c4-433a-8ffd-4603a1c5f5b3"
],
"x-ms-correlation-request-id": [
- "be7a9224-a1a3-4c8f-9fd5-b37e33495f04"
+ "68b93388-60c4-433a-8ffd-4603a1c5f5b3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180644Z:be7a9224-a1a3-4c8f-9fd5-b37e33495f04"
+ "WESTUS:20210715T062847Z:68b93388-60c4-433a-8ffd-4603a1c5f5b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4040,7 +4136,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:06:43 GMT"
+ "Thu, 15 Jul 2021 06:28:46 GMT"
],
"Expires": [
"-1"
@@ -4053,16 +4149,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4073,7 +4169,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4082,13 +4178,13 @@
"11992"
],
"x-ms-request-id": [
- "62b62ecf-4099-4ab1-a6cd-783df1ccd44b"
+ "17f4971c-6673-44d9-8431-47b37371e3b6"
],
"x-ms-correlation-request-id": [
- "62b62ecf-4099-4ab1-a6cd-783df1ccd44b"
+ "17f4971c-6673-44d9-8431-47b37371e3b6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180659Z:62b62ecf-4099-4ab1-a6cd-783df1ccd44b"
+ "WESTUS:20210715T062902Z:17f4971c-6673-44d9-8431-47b37371e3b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4097,7 +4193,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:06:58 GMT"
+ "Thu, 15 Jul 2021 06:29:01 GMT"
],
"Expires": [
"-1"
@@ -4110,16 +4206,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4130,7 +4226,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4139,13 +4235,13 @@
"11991"
],
"x-ms-request-id": [
- "ec8758d4-ce3c-4002-8a90-3099dc41bb53"
+ "8f32a928-235b-47cd-b6df-5712883bc23d"
],
"x-ms-correlation-request-id": [
- "ec8758d4-ce3c-4002-8a90-3099dc41bb53"
+ "8f32a928-235b-47cd-b6df-5712883bc23d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180714Z:ec8758d4-ce3c-4002-8a90-3099dc41bb53"
+ "WESTUS:20210715T062917Z:8f32a928-235b-47cd-b6df-5712883bc23d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4154,7 +4250,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:07:13 GMT"
+ "Thu, 15 Jul 2021 06:29:16 GMT"
],
"Expires": [
"-1"
@@ -4167,16 +4263,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4187,7 +4283,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4196,13 +4292,13 @@
"11990"
],
"x-ms-request-id": [
- "b6406510-ac37-4801-874b-102932f638d9"
+ "9fad46ab-07d9-45f7-937b-43d8deedace7"
],
"x-ms-correlation-request-id": [
- "b6406510-ac37-4801-874b-102932f638d9"
+ "9fad46ab-07d9-45f7-937b-43d8deedace7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180729Z:b6406510-ac37-4801-874b-102932f638d9"
+ "WESTUS:20210715T062932Z:9fad46ab-07d9-45f7-937b-43d8deedace7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4211,7 +4307,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:07:28 GMT"
+ "Thu, 15 Jul 2021 06:29:32 GMT"
],
"Expires": [
"-1"
@@ -4224,16 +4320,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4244,7 +4340,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4253,13 +4349,13 @@
"11989"
],
"x-ms-request-id": [
- "324d3232-5961-468a-835e-f928ecd18958"
+ "9c49e7f5-0dfc-42c6-8c19-3ba0543831bb"
],
"x-ms-correlation-request-id": [
- "324d3232-5961-468a-835e-f928ecd18958"
+ "9c49e7f5-0dfc-42c6-8c19-3ba0543831bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180744Z:324d3232-5961-468a-835e-f928ecd18958"
+ "WESTUS:20210715T062947Z:9c49e7f5-0dfc-42c6-8c19-3ba0543831bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4268,7 +4364,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:07:44 GMT"
+ "Thu, 15 Jul 2021 06:29:47 GMT"
],
"Expires": [
"-1"
@@ -4281,16 +4377,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4301,7 +4397,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4310,13 +4406,13 @@
"11988"
],
"x-ms-request-id": [
- "01fb267e-dbc4-4a03-a107-d98405d9b408"
+ "9effac68-0a26-43f6-8a7f-63bb173f2ec9"
],
"x-ms-correlation-request-id": [
- "01fb267e-dbc4-4a03-a107-d98405d9b408"
+ "9effac68-0a26-43f6-8a7f-63bb173f2ec9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180800Z:01fb267e-dbc4-4a03-a107-d98405d9b408"
+ "WESTUS:20210715T063002Z:9effac68-0a26-43f6-8a7f-63bb173f2ec9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4325,7 +4421,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:08:00 GMT"
+ "Thu, 15 Jul 2021 06:30:02 GMT"
],
"Expires": [
"-1"
@@ -4338,16 +4434,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4358,7 +4454,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4367,13 +4463,13 @@
"11987"
],
"x-ms-request-id": [
- "3ceb8f37-f198-4c99-8bdb-90bde72d7c0b"
+ "5b2d0a60-abcb-498e-8298-57a5e549e1fa"
],
"x-ms-correlation-request-id": [
- "3ceb8f37-f198-4c99-8bdb-90bde72d7c0b"
+ "5b2d0a60-abcb-498e-8298-57a5e549e1fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180815Z:3ceb8f37-f198-4c99-8bdb-90bde72d7c0b"
+ "WESTUS:20210715T063018Z:5b2d0a60-abcb-498e-8298-57a5e549e1fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4382,7 +4478,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:08:15 GMT"
+ "Thu, 15 Jul 2021 06:30:17 GMT"
],
"Expires": [
"-1"
@@ -4395,16 +4491,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4415,7 +4511,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4424,13 +4520,13 @@
"11986"
],
"x-ms-request-id": [
- "22254923-6d14-4dfd-8fa3-242b6cbb45e8"
+ "682a6039-ec1c-4982-a4da-c38352c1f40f"
],
"x-ms-correlation-request-id": [
- "22254923-6d14-4dfd-8fa3-242b6cbb45e8"
+ "682a6039-ec1c-4982-a4da-c38352c1f40f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180830Z:22254923-6d14-4dfd-8fa3-242b6cbb45e8"
+ "WESTUS:20210715T063033Z:682a6039-ec1c-4982-a4da-c38352c1f40f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4439,7 +4535,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:08:30 GMT"
+ "Thu, 15 Jul 2021 06:30:32 GMT"
],
"Expires": [
"-1"
@@ -4452,16 +4548,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4472,7 +4568,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4481,13 +4577,13 @@
"11985"
],
"x-ms-request-id": [
- "3bf4385f-948a-450a-b0ef-7e140580575c"
+ "c363b81f-d00b-4e7d-a817-0d7371899389"
],
"x-ms-correlation-request-id": [
- "3bf4385f-948a-450a-b0ef-7e140580575c"
+ "c363b81f-d00b-4e7d-a817-0d7371899389"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180855Z:3bf4385f-948a-450a-b0ef-7e140580575c"
+ "WESTUS:20210715T063048Z:c363b81f-d00b-4e7d-a817-0d7371899389"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4496,7 +4592,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:08:54 GMT"
+ "Thu, 15 Jul 2021 06:30:47 GMT"
],
"Expires": [
"-1"
@@ -4509,16 +4605,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4529,7 +4625,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4538,13 +4634,13 @@
"11984"
],
"x-ms-request-id": [
- "918ed077-cc7b-4d19-a44f-b2b17ae9345d"
+ "0f188a29-1db6-4c2d-b118-23e8d1f0aacc"
],
"x-ms-correlation-request-id": [
- "918ed077-cc7b-4d19-a44f-b2b17ae9345d"
+ "0f188a29-1db6-4c2d-b118-23e8d1f0aacc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180910Z:918ed077-cc7b-4d19-a44f-b2b17ae9345d"
+ "WESTUS:20210715T063103Z:0f188a29-1db6-4c2d-b118-23e8d1f0aacc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4553,7 +4649,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:09:09 GMT"
+ "Thu, 15 Jul 2021 06:31:02 GMT"
],
"Expires": [
"-1"
@@ -4566,16 +4662,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4586,7 +4682,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4595,13 +4691,13 @@
"11983"
],
"x-ms-request-id": [
- "3bf0bc6a-5545-4a52-8e0b-4dc8773b8caf"
+ "ed03366a-2b38-414a-8fef-18bac7332aa4"
],
"x-ms-correlation-request-id": [
- "3bf0bc6a-5545-4a52-8e0b-4dc8773b8caf"
+ "ed03366a-2b38-414a-8fef-18bac7332aa4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180925Z:3bf0bc6a-5545-4a52-8e0b-4dc8773b8caf"
+ "WESTUS:20210715T063118Z:ed03366a-2b38-414a-8fef-18bac7332aa4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4610,7 +4706,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:09:24 GMT"
+ "Thu, 15 Jul 2021 06:31:18 GMT"
],
"Expires": [
"-1"
@@ -4623,16 +4719,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4643,7 +4739,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4652,13 +4748,13 @@
"11982"
],
"x-ms-request-id": [
- "40e0da11-7087-402c-a8ca-8815e03ec682"
+ "30ce99d9-c5c7-4d66-b804-646278e27caa"
],
"x-ms-correlation-request-id": [
- "40e0da11-7087-402c-a8ca-8815e03ec682"
+ "30ce99d9-c5c7-4d66-b804-646278e27caa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180940Z:40e0da11-7087-402c-a8ca-8815e03ec682"
+ "WESTUS:20210715T063133Z:30ce99d9-c5c7-4d66-b804-646278e27caa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4667,7 +4763,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:09:40 GMT"
+ "Thu, 15 Jul 2021 06:31:33 GMT"
],
"Expires": [
"-1"
@@ -4680,16 +4776,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4700,7 +4796,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4709,13 +4805,13 @@
"11981"
],
"x-ms-request-id": [
- "109ba4d3-5787-43ff-aa12-4fd417d09d18"
+ "b6785a55-6e72-4e71-a32f-bed7bac97214"
],
"x-ms-correlation-request-id": [
- "109ba4d3-5787-43ff-aa12-4fd417d09d18"
+ "b6785a55-6e72-4e71-a32f-bed7bac97214"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T180956Z:109ba4d3-5787-43ff-aa12-4fd417d09d18"
+ "WESTUS:20210715T063149Z:b6785a55-6e72-4e71-a32f-bed7bac97214"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4724,7 +4820,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:09:55 GMT"
+ "Thu, 15 Jul 2021 06:31:48 GMT"
],
"Expires": [
"-1"
@@ -4737,16 +4833,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4757,7 +4853,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4766,13 +4862,13 @@
"11980"
],
"x-ms-request-id": [
- "85435173-b337-41f2-868d-fb6108200573"
+ "7cee2aa9-339e-45e9-aa2e-67d5f8374a6b"
],
"x-ms-correlation-request-id": [
- "85435173-b337-41f2-868d-fb6108200573"
+ "7cee2aa9-339e-45e9-aa2e-67d5f8374a6b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181011Z:85435173-b337-41f2-868d-fb6108200573"
+ "WESTUS:20210715T063204Z:7cee2aa9-339e-45e9-aa2e-67d5f8374a6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4781,7 +4877,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:10:11 GMT"
+ "Thu, 15 Jul 2021 06:32:04 GMT"
],
"Expires": [
"-1"
@@ -4794,16 +4890,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4814,7 +4910,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4823,13 +4919,13 @@
"11979"
],
"x-ms-request-id": [
- "39e6e711-0c6f-45bd-9193-9917975c0625"
+ "d4fa8157-e3d3-4b30-a8d1-91d7ae99f7a3"
],
"x-ms-correlation-request-id": [
- "39e6e711-0c6f-45bd-9193-9917975c0625"
+ "d4fa8157-e3d3-4b30-a8d1-91d7ae99f7a3"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181026Z:39e6e711-0c6f-45bd-9193-9917975c0625"
+ "WESTUS:20210715T063219Z:d4fa8157-e3d3-4b30-a8d1-91d7ae99f7a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4838,7 +4934,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:10:26 GMT"
+ "Thu, 15 Jul 2021 06:32:19 GMT"
],
"Expires": [
"-1"
@@ -4851,16 +4947,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4871,7 +4967,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4880,13 +4976,13 @@
"11978"
],
"x-ms-request-id": [
- "5b4c70ac-ee5e-4b84-a567-8af11dab542c"
+ "7a7951d8-ba3f-4699-9973-8bd09112eff9"
],
"x-ms-correlation-request-id": [
- "5b4c70ac-ee5e-4b84-a567-8af11dab542c"
+ "7a7951d8-ba3f-4699-9973-8bd09112eff9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181041Z:5b4c70ac-ee5e-4b84-a567-8af11dab542c"
+ "WESTUS:20210715T063234Z:7a7951d8-ba3f-4699-9973-8bd09112eff9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4895,7 +4991,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:10:41 GMT"
+ "Thu, 15 Jul 2021 06:32:34 GMT"
],
"Expires": [
"-1"
@@ -4908,16 +5004,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4928,7 +5024,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4937,13 +5033,13 @@
"11977"
],
"x-ms-request-id": [
- "3d125c8e-2f84-470c-93a5-65815915fc04"
+ "90317091-86b9-4ef6-b162-6b81a28fdd38"
],
"x-ms-correlation-request-id": [
- "3d125c8e-2f84-470c-93a5-65815915fc04"
+ "90317091-86b9-4ef6-b162-6b81a28fdd38"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181057Z:3d125c8e-2f84-470c-93a5-65815915fc04"
+ "WESTUS:20210715T063249Z:90317091-86b9-4ef6-b162-6b81a28fdd38"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4952,7 +5048,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:10:56 GMT"
+ "Thu, 15 Jul 2021 06:32:49 GMT"
],
"Expires": [
"-1"
@@ -4965,16 +5061,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -4985,7 +5081,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -4994,13 +5090,13 @@
"11976"
],
"x-ms-request-id": [
- "34111190-71a4-4f88-9039-6f558c5addae"
+ "72503549-d50e-4332-8874-e97e3aaba622"
],
"x-ms-correlation-request-id": [
- "34111190-71a4-4f88-9039-6f558c5addae"
+ "72503549-d50e-4332-8874-e97e3aaba622"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181112Z:34111190-71a4-4f88-9039-6f558c5addae"
+ "WESTUS:20210715T063305Z:72503549-d50e-4332-8874-e97e3aaba622"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5009,7 +5105,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:11:11 GMT"
+ "Thu, 15 Jul 2021 06:33:04 GMT"
],
"Expires": [
"-1"
@@ -5022,16 +5118,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5042,7 +5138,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5051,13 +5147,13 @@
"11975"
],
"x-ms-request-id": [
- "08f1e1c1-e057-472c-a1b9-bf0ce60b1993"
+ "006af3ec-64b5-4c45-a405-b4332d097c29"
],
"x-ms-correlation-request-id": [
- "08f1e1c1-e057-472c-a1b9-bf0ce60b1993"
+ "006af3ec-64b5-4c45-a405-b4332d097c29"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181127Z:08f1e1c1-e057-472c-a1b9-bf0ce60b1993"
+ "WESTUS:20210715T063320Z:006af3ec-64b5-4c45-a405-b4332d097c29"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5066,7 +5162,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:11:26 GMT"
+ "Thu, 15 Jul 2021 06:33:19 GMT"
],
"Expires": [
"-1"
@@ -5079,16 +5175,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5099,7 +5195,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5108,13 +5204,13 @@
"11974"
],
"x-ms-request-id": [
- "ce04a970-d221-413c-9af7-8fd2844bcc66"
+ "1956f77c-9d25-457b-b14c-43d57f4ce51f"
],
"x-ms-correlation-request-id": [
- "ce04a970-d221-413c-9af7-8fd2844bcc66"
+ "1956f77c-9d25-457b-b14c-43d57f4ce51f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181142Z:ce04a970-d221-413c-9af7-8fd2844bcc66"
+ "WESTUS:20210715T063335Z:1956f77c-9d25-457b-b14c-43d57f4ce51f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5123,7 +5219,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:11:41 GMT"
+ "Thu, 15 Jul 2021 06:33:35 GMT"
],
"Expires": [
"-1"
@@ -5136,16 +5232,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5156,7 +5252,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5165,13 +5261,13 @@
"11973"
],
"x-ms-request-id": [
- "ed6ef754-8874-4fe6-8497-e5eca5839857"
+ "a34271a7-5bc7-4f68-b362-7a9cf1b44441"
],
"x-ms-correlation-request-id": [
- "ed6ef754-8874-4fe6-8497-e5eca5839857"
+ "a34271a7-5bc7-4f68-b362-7a9cf1b44441"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181157Z:ed6ef754-8874-4fe6-8497-e5eca5839857"
+ "WESTUS:20210715T063350Z:a34271a7-5bc7-4f68-b362-7a9cf1b44441"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5180,7 +5276,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:11:56 GMT"
+ "Thu, 15 Jul 2021 06:33:50 GMT"
],
"Expires": [
"-1"
@@ -5193,16 +5289,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5213,7 +5309,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5222,13 +5318,13 @@
"11972"
],
"x-ms-request-id": [
- "edf42e23-17ae-4b89-982b-aae8e00f868c"
+ "09a8017b-14c9-4803-825e-c6fd28af3a2e"
],
"x-ms-correlation-request-id": [
- "edf42e23-17ae-4b89-982b-aae8e00f868c"
+ "09a8017b-14c9-4803-825e-c6fd28af3a2e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181212Z:edf42e23-17ae-4b89-982b-aae8e00f868c"
+ "WESTUS:20210715T063405Z:09a8017b-14c9-4803-825e-c6fd28af3a2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5237,7 +5333,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:12:12 GMT"
+ "Thu, 15 Jul 2021 06:34:05 GMT"
],
"Expires": [
"-1"
@@ -5250,16 +5346,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5270,7 +5366,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5279,13 +5375,13 @@
"11971"
],
"x-ms-request-id": [
- "7dbae913-45ba-4b34-bfb1-fd43dd3376dc"
+ "c585c4f9-0a50-4588-9dc3-843f6f5cd8d4"
],
"x-ms-correlation-request-id": [
- "7dbae913-45ba-4b34-bfb1-fd43dd3376dc"
+ "c585c4f9-0a50-4588-9dc3-843f6f5cd8d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181228Z:7dbae913-45ba-4b34-bfb1-fd43dd3376dc"
+ "WESTUS:20210715T063421Z:c585c4f9-0a50-4588-9dc3-843f6f5cd8d4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5294,7 +5390,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:12:27 GMT"
+ "Thu, 15 Jul 2021 06:34:20 GMT"
],
"Expires": [
"-1"
@@ -5307,16 +5403,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5327,7 +5423,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5336,13 +5432,13 @@
"11970"
],
"x-ms-request-id": [
- "4d2470f0-ad03-460b-8e66-f3b32bc67794"
+ "83264a42-5dae-4921-b600-35f05a27d685"
],
"x-ms-correlation-request-id": [
- "4d2470f0-ad03-460b-8e66-f3b32bc67794"
+ "83264a42-5dae-4921-b600-35f05a27d685"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181243Z:4d2470f0-ad03-460b-8e66-f3b32bc67794"
+ "WESTUS:20210715T063436Z:83264a42-5dae-4921-b600-35f05a27d685"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5351,7 +5447,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:12:43 GMT"
+ "Thu, 15 Jul 2021 06:34:35 GMT"
],
"Expires": [
"-1"
@@ -5364,16 +5460,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5384,7 +5480,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5393,13 +5489,13 @@
"11969"
],
"x-ms-request-id": [
- "cf2e193e-8d3d-48a4-8d11-dca4f185f5ff"
+ "b3681caa-70b2-42af-a5a7-67a001b09134"
],
"x-ms-correlation-request-id": [
- "cf2e193e-8d3d-48a4-8d11-dca4f185f5ff"
+ "b3681caa-70b2-42af-a5a7-67a001b09134"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181258Z:cf2e193e-8d3d-48a4-8d11-dca4f185f5ff"
+ "WESTUS:20210715T063451Z:b3681caa-70b2-42af-a5a7-67a001b09134"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5408,7 +5504,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:12:58 GMT"
+ "Thu, 15 Jul 2021 06:34:51 GMT"
],
"Expires": [
"-1"
@@ -5421,16 +5517,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5441,7 +5537,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5450,13 +5546,13 @@
"11968"
],
"x-ms-request-id": [
- "9b23926c-ff82-4077-b7f4-7360b1d6ba25"
+ "fa9fd3c4-c5d3-40bc-a3d1-3421da047fea"
],
"x-ms-correlation-request-id": [
- "9b23926c-ff82-4077-b7f4-7360b1d6ba25"
+ "fa9fd3c4-c5d3-40bc-a3d1-3421da047fea"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181313Z:9b23926c-ff82-4077-b7f4-7360b1d6ba25"
+ "WESTUS:20210715T063506Z:fa9fd3c4-c5d3-40bc-a3d1-3421da047fea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5465,7 +5561,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:13:13 GMT"
+ "Thu, 15 Jul 2021 06:35:06 GMT"
],
"Expires": [
"-1"
@@ -5478,16 +5574,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5498,7 +5594,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5507,13 +5603,13 @@
"11967"
],
"x-ms-request-id": [
- "33fae94e-b7b4-4285-8eda-d26d391d429c"
+ "618a432b-1856-4c56-8085-ff000a934145"
],
"x-ms-correlation-request-id": [
- "33fae94e-b7b4-4285-8eda-d26d391d429c"
+ "618a432b-1856-4c56-8085-ff000a934145"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181328Z:33fae94e-b7b4-4285-8eda-d26d391d429c"
+ "WESTUS:20210715T063521Z:618a432b-1856-4c56-8085-ff000a934145"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5522,7 +5618,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:13:28 GMT"
+ "Thu, 15 Jul 2021 06:35:21 GMT"
],
"Expires": [
"-1"
@@ -5535,16 +5631,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5555,7 +5651,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5564,13 +5660,13 @@
"11966"
],
"x-ms-request-id": [
- "2bb9df55-112f-4dbd-87a1-54c3e0c51cc3"
+ "4d2e3d61-774d-43f9-b690-3997e1fee183"
],
"x-ms-correlation-request-id": [
- "2bb9df55-112f-4dbd-87a1-54c3e0c51cc3"
+ "4d2e3d61-774d-43f9-b690-3997e1fee183"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181344Z:2bb9df55-112f-4dbd-87a1-54c3e0c51cc3"
+ "WESTUS:20210715T063536Z:4d2e3d61-774d-43f9-b690-3997e1fee183"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5579,7 +5675,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:13:43 GMT"
+ "Thu, 15 Jul 2021 06:35:36 GMT"
],
"Expires": [
"-1"
@@ -5592,16 +5688,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5612,7 +5708,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5621,13 +5717,13 @@
"11965"
],
"x-ms-request-id": [
- "a44f4538-b169-4ff0-bed8-3b2c48fe10ba"
+ "564d7eaa-4949-41c4-bdbc-b7d0a7b1adb9"
],
"x-ms-correlation-request-id": [
- "a44f4538-b169-4ff0-bed8-3b2c48fe10ba"
+ "564d7eaa-4949-41c4-bdbc-b7d0a7b1adb9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181359Z:a44f4538-b169-4ff0-bed8-3b2c48fe10ba"
+ "WESTUS:20210715T063552Z:564d7eaa-4949-41c4-bdbc-b7d0a7b1adb9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5636,7 +5732,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:13:58 GMT"
+ "Thu, 15 Jul 2021 06:35:51 GMT"
],
"Expires": [
"-1"
@@ -5649,16 +5745,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5669,7 +5765,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5678,13 +5774,13 @@
"11964"
],
"x-ms-request-id": [
- "af0700cd-18aa-48a6-bf1c-90ea0cd7a139"
+ "705942a4-b70b-4d1d-b78f-3945323f88f8"
],
"x-ms-correlation-request-id": [
- "af0700cd-18aa-48a6-bf1c-90ea0cd7a139"
+ "705942a4-b70b-4d1d-b78f-3945323f88f8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181414Z:af0700cd-18aa-48a6-bf1c-90ea0cd7a139"
+ "WESTUS:20210715T063607Z:705942a4-b70b-4d1d-b78f-3945323f88f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5693,7 +5789,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:14:14 GMT"
+ "Thu, 15 Jul 2021 06:36:06 GMT"
],
"Expires": [
"-1"
@@ -5706,16 +5802,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5726,7 +5822,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5735,13 +5831,13 @@
"11963"
],
"x-ms-request-id": [
- "bf89928f-49e0-468a-99d3-a24b2a9b5a33"
+ "38eb015f-1e92-4c5d-86bb-95daba1b2c58"
],
"x-ms-correlation-request-id": [
- "bf89928f-49e0-468a-99d3-a24b2a9b5a33"
+ "38eb015f-1e92-4c5d-86bb-95daba1b2c58"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181429Z:bf89928f-49e0-468a-99d3-a24b2a9b5a33"
+ "WESTUS:20210715T063622Z:38eb015f-1e92-4c5d-86bb-95daba1b2c58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5750,7 +5846,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:14:29 GMT"
+ "Thu, 15 Jul 2021 06:36:22 GMT"
],
"Expires": [
"-1"
@@ -5763,16 +5859,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5783,7 +5879,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5792,13 +5888,13 @@
"11962"
],
"x-ms-request-id": [
- "6a649340-c59d-4f12-a24e-a02f71d7335c"
+ "30c42366-e791-4998-8582-c752b090cd16"
],
"x-ms-correlation-request-id": [
- "6a649340-c59d-4f12-a24e-a02f71d7335c"
+ "30c42366-e791-4998-8582-c752b090cd16"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181444Z:6a649340-c59d-4f12-a24e-a02f71d7335c"
+ "WESTUS:20210715T063637Z:30c42366-e791-4998-8582-c752b090cd16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5807,7 +5903,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:14:44 GMT"
+ "Thu, 15 Jul 2021 06:36:37 GMT"
],
"Expires": [
"-1"
@@ -5820,16 +5916,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5840,7 +5936,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5849,13 +5945,13 @@
"11961"
],
"x-ms-request-id": [
- "1c1e0025-895b-4b1b-afcf-a6ca964e82dc"
+ "c31215ef-efec-4db8-a988-56c8a51842be"
],
"x-ms-correlation-request-id": [
- "1c1e0025-895b-4b1b-afcf-a6ca964e82dc"
+ "c31215ef-efec-4db8-a988-56c8a51842be"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181500Z:1c1e0025-895b-4b1b-afcf-a6ca964e82dc"
+ "WESTUS:20210715T063652Z:c31215ef-efec-4db8-a988-56c8a51842be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5864,7 +5960,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:14:59 GMT"
+ "Thu, 15 Jul 2021 06:36:52 GMT"
],
"Expires": [
"-1"
@@ -5877,16 +5973,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5897,7 +5993,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5906,13 +6002,13 @@
"11960"
],
"x-ms-request-id": [
- "94bbf933-1af0-44ec-91d4-50d4ebe513ad"
+ "7ad60ab9-ef2a-4490-ac33-312f19693e85"
],
"x-ms-correlation-request-id": [
- "94bbf933-1af0-44ec-91d4-50d4ebe513ad"
+ "7ad60ab9-ef2a-4490-ac33-312f19693e85"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181515Z:94bbf933-1af0-44ec-91d4-50d4ebe513ad"
+ "WESTUS:20210715T063708Z:7ad60ab9-ef2a-4490-ac33-312f19693e85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5921,7 +6017,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:15:15 GMT"
+ "Thu, 15 Jul 2021 06:37:07 GMT"
],
"Expires": [
"-1"
@@ -5934,16 +6030,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -5954,7 +6050,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -5963,13 +6059,13 @@
"11959"
],
"x-ms-request-id": [
- "fcfb47f7-74f2-444c-8981-e79fbc4a342d"
+ "40ef71eb-6fa2-4b79-90ac-1be433912f1b"
],
"x-ms-correlation-request-id": [
- "fcfb47f7-74f2-444c-8981-e79fbc4a342d"
+ "40ef71eb-6fa2-4b79-90ac-1be433912f1b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181530Z:fcfb47f7-74f2-444c-8981-e79fbc4a342d"
+ "WESTUS:20210715T063723Z:40ef71eb-6fa2-4b79-90ac-1be433912f1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5978,7 +6074,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:15:30 GMT"
+ "Thu, 15 Jul 2021 06:37:22 GMT"
],
"Expires": [
"-1"
@@ -5991,16 +6087,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6011,7 +6107,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6020,13 +6116,13 @@
"11958"
],
"x-ms-request-id": [
- "f36abdb9-09a5-4523-845f-d05959e5a906"
+ "c69304d2-fca2-4c04-80ab-ab5a77427dcc"
],
"x-ms-correlation-request-id": [
- "f36abdb9-09a5-4523-845f-d05959e5a906"
+ "c69304d2-fca2-4c04-80ab-ab5a77427dcc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181545Z:f36abdb9-09a5-4523-845f-d05959e5a906"
+ "WESTUS:20210715T063738Z:c69304d2-fca2-4c04-80ab-ab5a77427dcc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6035,7 +6131,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:15:45 GMT"
+ "Thu, 15 Jul 2021 06:37:38 GMT"
],
"Expires": [
"-1"
@@ -6048,16 +6144,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6068,7 +6164,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6077,13 +6173,13 @@
"11957"
],
"x-ms-request-id": [
- "046225b6-b4ae-45cb-8840-6676510da9a9"
+ "d9ac70b2-fbc4-4c05-91e7-e629851ad4c5"
],
"x-ms-correlation-request-id": [
- "046225b6-b4ae-45cb-8840-6676510da9a9"
+ "d9ac70b2-fbc4-4c05-91e7-e629851ad4c5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181601Z:046225b6-b4ae-45cb-8840-6676510da9a9"
+ "WESTUS:20210715T063753Z:d9ac70b2-fbc4-4c05-91e7-e629851ad4c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6092,7 +6188,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:16:00 GMT"
+ "Thu, 15 Jul 2021 06:37:53 GMT"
],
"Expires": [
"-1"
@@ -6105,16 +6201,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6125,7 +6221,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6134,13 +6230,13 @@
"11956"
],
"x-ms-request-id": [
- "5155204b-ebb2-4431-a35a-4a058df3f3dc"
+ "2ede5198-444f-4e2f-8e22-0b07b1784288"
],
"x-ms-correlation-request-id": [
- "5155204b-ebb2-4431-a35a-4a058df3f3dc"
+ "2ede5198-444f-4e2f-8e22-0b07b1784288"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181616Z:5155204b-ebb2-4431-a35a-4a058df3f3dc"
+ "WESTUS:20210715T063808Z:2ede5198-444f-4e2f-8e22-0b07b1784288"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6149,7 +6245,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:16:15 GMT"
+ "Thu, 15 Jul 2021 06:38:08 GMT"
],
"Expires": [
"-1"
@@ -6162,16 +6258,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6182,7 +6278,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6191,13 +6287,13 @@
"11955"
],
"x-ms-request-id": [
- "35ff5432-8900-4cd1-93a4-772c8e69ae44"
+ "2fb9c80c-9ba9-4ef8-ab10-624072a7b4f9"
],
"x-ms-correlation-request-id": [
- "35ff5432-8900-4cd1-93a4-772c8e69ae44"
+ "2fb9c80c-9ba9-4ef8-ab10-624072a7b4f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181631Z:35ff5432-8900-4cd1-93a4-772c8e69ae44"
+ "WESTUS:20210715T063823Z:2fb9c80c-9ba9-4ef8-ab10-624072a7b4f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6206,7 +6302,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:16:31 GMT"
+ "Thu, 15 Jul 2021 06:38:23 GMT"
],
"Expires": [
"-1"
@@ -6219,16 +6315,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6239,7 +6335,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6248,13 +6344,13 @@
"11954"
],
"x-ms-request-id": [
- "dcaf7eef-7bcd-4e55-9c1e-250a0cfcc354"
+ "ac1f7e99-72c6-4fe2-8dd0-265768a7b8dd"
],
"x-ms-correlation-request-id": [
- "dcaf7eef-7bcd-4e55-9c1e-250a0cfcc354"
+ "ac1f7e99-72c6-4fe2-8dd0-265768a7b8dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181646Z:dcaf7eef-7bcd-4e55-9c1e-250a0cfcc354"
+ "WESTUS:20210715T063839Z:ac1f7e99-72c6-4fe2-8dd0-265768a7b8dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6263,7 +6359,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:16:46 GMT"
+ "Thu, 15 Jul 2021 06:38:38 GMT"
],
"Expires": [
"-1"
@@ -6276,16 +6372,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6296,7 +6392,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6305,13 +6401,13 @@
"11953"
],
"x-ms-request-id": [
- "5f405392-ecfd-4d36-a8cd-749e5f169ea0"
+ "69e031e0-0c74-4636-9922-3d7c913cfe09"
],
"x-ms-correlation-request-id": [
- "5f405392-ecfd-4d36-a8cd-749e5f169ea0"
+ "69e031e0-0c74-4636-9922-3d7c913cfe09"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181701Z:5f405392-ecfd-4d36-a8cd-749e5f169ea0"
+ "WESTUS:20210715T063854Z:69e031e0-0c74-4636-9922-3d7c913cfe09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6320,7 +6416,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:01 GMT"
+ "Thu, 15 Jul 2021 06:38:53 GMT"
],
"Expires": [
"-1"
@@ -6333,16 +6429,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6353,7 +6449,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6362,13 +6458,13 @@
"11952"
],
"x-ms-request-id": [
- "63fee5bb-3927-4f6b-bee4-a6b3ea6ac233"
+ "e837c7b9-9f18-4fe4-b4ee-3ae9a4e425e0"
],
"x-ms-correlation-request-id": [
- "63fee5bb-3927-4f6b-bee4-a6b3ea6ac233"
+ "e837c7b9-9f18-4fe4-b4ee-3ae9a4e425e0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181717Z:63fee5bb-3927-4f6b-bee4-a6b3ea6ac233"
+ "WESTUS:20210715T063909Z:e837c7b9-9f18-4fe4-b4ee-3ae9a4e425e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6377,7 +6473,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:16 GMT"
+ "Thu, 15 Jul 2021 06:39:08 GMT"
],
"Expires": [
"-1"
@@ -6390,16 +6486,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6410,7 +6506,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMjgtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -6419,13 +6515,13 @@
"11951"
],
"x-ms-request-id": [
- "78a65b1a-5254-403f-a101-514df953cf3d"
+ "9306adb2-3d38-40ee-b6ac-e9ee299ddcc1"
],
"x-ms-correlation-request-id": [
- "78a65b1a-5254-403f-a101-514df953cf3d"
+ "9306adb2-3d38-40ee-b6ac-e9ee299ddcc1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181732Z:78a65b1a-5254-403f-a101-514df953cf3d"
+ "WESTUS:20210715T063924Z:9306adb2-3d38-40ee-b6ac-e9ee299ddcc1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6434,7 +6530,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:31 GMT"
+ "Thu, 15 Jul 2021 06:39:23 GMT"
],
"Expires": [
"-1"
@@ -6447,16 +6543,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6470,13 +6566,13 @@
"11950"
],
"x-ms-request-id": [
- "c6381b0b-ab23-4dd3-8b0b-6b25a271c0ba"
+ "a1764c95-43f3-403b-bb28-af195f53ee7d"
],
"x-ms-correlation-request-id": [
- "c6381b0b-ab23-4dd3-8b0b-6b25a271c0ba"
+ "a1764c95-43f3-403b-bb28-af195f53ee7d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181747Z:c6381b0b-ab23-4dd3-8b0b-6b25a271c0ba"
+ "WESTUS:20210715T063939Z:a1764c95-43f3-403b-bb28-af195f53ee7d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6485,7 +6581,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:46 GMT"
+ "Thu, 15 Jul 2021 06:39:38 GMT"
],
"Expires": [
"-1"
@@ -6498,16 +6594,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a200340d-6b82-494d-9dbf-687ba6e33f9e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTIwMDM0MGQtNmI4Mi00OTRkLTlkYmYtNjg3YmE2ZTMzZjllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16Y3RSVUZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKbFlYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "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.27817.03",
+ "FxVersion/4.6.30015.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11"
+ "OSVersion/Microsoft.Windows.10.0.19043.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.40"
]
},
"ResponseHeaders": {
@@ -6521,13 +6617,13 @@
"11949"
],
"x-ms-request-id": [
- "e74c0c0d-6bed-426e-9239-479805aec287"
+ "bcf8dc7f-022b-43e6-860c-00571b5ba638"
],
"x-ms-correlation-request-id": [
- "e74c0c0d-6bed-426e-9239-479805aec287"
+ "bcf8dc7f-022b-43e6-860c-00571b5ba638"
],
"x-ms-routing-request-id": [
- "WESTUS:20200420T181747Z:e74c0c0d-6bed-426e-9239-479805aec287"
+ "WESTUS:20210715T063939Z:bcf8dc7f-022b-43e6-860c-00571b5ba638"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -6536,7 +6632,7 @@
"nosniff"
],
"Date": [
- "Mon, 20 Apr 2020 18:17:47 GMT"
+ "Thu, 15 Jul 2021 06:39:39 GMT"
],
"Expires": [
"-1"
@@ -6551,8 +6647,8 @@
],
"Names": {
"Test-ApiManagementVirtualNetworkCRUD": [
- "ps9237",
- "ps1273"
+ "ps4328",
+ "ps8959"
]
},
"Variables": {
diff --git a/src/ApiManagement/ApiManagement.sln b/src/ApiManagement/ApiManagement.sln
index 68cbedb5b8b3..047c68e770b5 100644
--- a/src/ApiManagement/ApiManagement.sln
+++ b/src/ApiManagement/ApiManagement.sln
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.27703.2042
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31328.270
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApiManagement", "ApiManagement\ApiManagement.csproj", "{DC0A9742-DF36-48C9-BD2F-68D01AED6257}"
EndProject
@@ -50,6 +50,10 @@ Global
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/src/ApiManagement/ApiManagement/ApiManagement.csproj b/src/ApiManagement/ApiManagement/ApiManagement.csproj
index c65731dbcf20..529cc8243801 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 c7d7726defe0..4bf2979d08c9 100644
--- a/src/ApiManagement/ApiManagement/ApiManagementClient.cs
+++ b/src/ApiManagement/ApiManagement/ApiManagementClient.cs
@@ -138,7 +138,10 @@ public PsApiManagement CreateApiManagementService(
PsApiManagementSystemCertificate[] systemCertificates = null,
PsApiManagementSslSetting sslSettings = null,
bool createSystemResourceIdentity = false,
- string[] userAssignedIdentity = null)
+ string[] userAssignedIdentity = null,
+ string[] zone = null,
+ bool? disableGateway = null,
+ string minimalControlPlaneApiVersion = null)
{
string skuType = Mappers.MapSku(sku);
@@ -171,22 +174,7 @@ public PsApiManagement CreateApiManagementService(
{
parameters.AdditionalLocations =
additionalRegions
- .Select(region =>
- new AdditionalLocation
- {
- Location = region.Location,
- Sku = new ApiManagementServiceSkuProperties()
- {
- Name = Mappers.MapSku(region.Sku),
- Capacity = region.Capacity
- },
- VirtualNetworkConfiguration = region.VirtualNetwork == null
- ? null
- : new VirtualNetworkConfiguration
- {
- SubnetResourceId = region.VirtualNetwork.SubnetResourceId
- }
- })
+ .Select(region => region.GetAdditionalLocation())
.ToList();
}
@@ -215,10 +203,28 @@ public PsApiManagement CreateApiManagementService(
parameters.EnableClientCertificate = enableClientCertificate;
}
+ if (zone != null)
+ {
+ parameters.Zones = zone;
+ }
+
+ if (disableGateway != null && disableGateway.HasValue)
+ {
+ parameters.DisableGateway = disableGateway.Value;
+ }
+
+ if (!string.IsNullOrWhiteSpace(minimalControlPlaneApiVersion))
+ {
+ parameters.ApiVersionConstraint = new ApiVersionConstraint()
+ {
+ MinApiVersion = minimalControlPlaneApiVersion
+ };
+ }
+
parameters.Identity = Mappers.MapAssignedIdentity(createSystemResourceIdentity, userAssignedIdentity);
var apiManagementResource = Client.ApiManagementService.CreateOrUpdate(resourceGroupName, serviceName, parameters);
- return new PsApiManagement(apiManagementResource);
+ return new PsApiManagement(apiManagementResource);
}
IList BuildHostNameConfiguration(PsApiManagementCustomHostNameConfiguration[] pshostnameConfigurations)
diff --git a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1 b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
index 2192aa3e1949..2c84aa1a2387 100644
--- a/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
+++ b/src/ApiManagement/ApiManagement/Az.ApiManagement.psd1
@@ -172,7 +172,8 @@ CmdletsToExport = 'Add-AzApiManagementApiToGateway',
'Set-AzApiManagementSubscription',
'Set-AzApiManagementTenantAccess', 'Set-AzApiManagementUser',
'Update-AzApiManagementApiRelease', 'Update-AzApiManagementCache',
- 'Update-AzApiManagementRegion'
+ 'Update-AzApiManagementRegion',
+ 'Sync-AzApiManagementKeyVaultSecret', 'New-AzApiManagementKeyVaultObject'
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/ApiManagement/ApiManagement/ChangeLog.md b/src/ApiManagement/ApiManagement/ChangeLog.md
index 654387b11fb0..48fac40c6782 100644
--- a/src/ApiManagement/ApiManagement/ChangeLog.md
+++ b/src/ApiManagement/ApiManagement/ChangeLog.md
@@ -18,6 +18,30 @@
- Additional information about change #1
-->
## Upcoming Release
+* Added new `Sync-AzApiManagementKeyVaultSecret` cmdlet.
+* Added new `New-AzApiManagementKeyVaultObject` cmdlet.
+* Added new optional [-useFromLocation] parameter to the `Get-ApiManagementCache` `New-ApiManagementCache``Update-ApiManagementCache` cmdlet.
+
+* Updated cmdlet **New-AzApiManagement** to manage ApiManagement service
+ - Added support for the new `Isolated` SKU
+ - Added support for managing Availability Zones using `Zone` property
+ - Added support for Disabling Gateway in a Region using `DisableGateway` property
+ - Added support for managing the minimum Api Version to allow for Control Plane using `MinimalControlPlaneApiVersion` property.
+
+* Updated cmdlet **New-AzApiManagementRegion** to manage ApiManagement service
+ - Added support for managing Availability Zones using `Zone` property
+ - Added support for Disabling Gateway in a Region using `DisableGateway` property
+
+* Updated cmdlet **Add-AzApiManagementRegion** to manage ApiManagement service
+ - Added support for managing Availability Zones using `Zone` property
+ - Added support for Disabling Gateway in a Region using `DisableGateway` property
+
+* Updated cmdlet **Update-AzApiManagementRegion** to manage ApiManagement service
+ - Added support for managing Availability Zones using `Zone` property
+ - Added support for Disabling Gateway in a Region using `DisableGateway` property
+
+* Updated cmdlet **New-AzApiManagementCustomHostnameConfiguration** to manage Custom Hostname Configuration
+ - Added support for specifying `IdentityClientId` to provide Managed Identity User Assigned ClientId to use with KeyVault
## Version 2.2.0
* [Breaking change] `New-AzApiManagementProduct` by default has no subscription limit.
diff --git a/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs
index 330c12074d8a..164b500f9a53 100644
--- a/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Commands/AddAzureApiManagementRegion.cs
@@ -55,12 +55,33 @@ public class AddAzureApiManagementRegion : AzureApiManagementCmdletBase
HelpMessage = "Virtual network configuration. Default value is $null.")]
public PsApiManagementVirtualNetwork VirtualNetwork { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A list of availability zones denoting where the api management service is deployed into.")]
+ [ValidateNotNullOrEmpty]
+ public string[] Zone { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "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." +
+ " Default behavior is to make the region live immediately. ")]
+ public bool? DisableGateway { get; set; }
+
public override void ExecuteCmdlet()
{
ExecuteCmdLetWrap(
() =>
{
- ApiManagement.AddRegion(Location, Sku ?? PsApiManagementSku.Premium, Capacity ?? 1, VirtualNetwork);
+ ApiManagement.AddRegion(
+ Location,
+ Sku ?? PsApiManagementSku.Premium,
+ Capacity ?? 1,
+ VirtualNetwork,
+ Zone,
+ DisableGateway);
return ApiManagement;
},
diff --git a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs
index 4a9de7af3b07..18827acb80bf 100644
--- a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs
+++ b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagement.cs
@@ -133,6 +133,26 @@ public class NewAzureApiManagement : AzureApiManagementCmdletBase
" This also enables the ability to authenticate the certificate in the policy on the gateway.")]
public SwitchParameter EnableClientCertificate { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A list of availability zones denoting where the api management service is deployed into.")]
+ [ValidateNotNullOrEmpty]
+ public string[] Zone { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "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." +
+ "Default behavior is to make the region live immediately. ")]
+ public bool? DisableGateway { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "Minimal Control Plane Apis version to allow for managing the API Management service.")]
+ public string MinimalControlPlaneApiVersion { get; set; }
+
public override void ExecuteCmdlet()
{
var apiManagementService = Client.CreateApiManagementService(
@@ -152,7 +172,10 @@ public override void ExecuteCmdlet()
SystemCertificateConfiguration,
SslSetting,
SystemAssignedIdentity.IsPresent,
- UserAssignedIdentity);
+ UserAssignedIdentity,
+ Zone,
+ DisableGateway,
+ MinimalControlPlaneApiVersion);
this.WriteObject(apiManagementService);
}
diff --git a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs
index 45c2aebe8a35..d4652ba72830 100644
--- a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs
+++ b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementCustomHostnameConfiguration.cs
@@ -56,6 +56,13 @@ public class NewAzureApiManagementCustomHostnameConfiguration : AzureRMCmdlet
HelpMessage = "KeyVaultId to the secret storing the Custom SSL Certificate.")]
public string KeyVaultId { get; set; }
+ [Parameter(
+ ValueFromPipelineByPropertyName = false,
+ ParameterSetName = SslCertificateFromKeyVault,
+ Mandatory = false,
+ HelpMessage = "User-Assigned Managed Identity ClientId to authenticate to KeyVault to fetch Custom SSL Certificate.")]
+ public string IdentityClientId { get; set; }
+
[Parameter(
ValueFromPipelineByPropertyName = false,
ParameterSetName = SslCertificateFromFile,
@@ -98,6 +105,10 @@ public override void ExecuteCmdlet()
if (!string.IsNullOrWhiteSpace(KeyVaultId))
{
hostnameConfig.KeyVaultId = KeyVaultId;
+ if (!string.IsNullOrWhiteSpace(IdentityClientId))
+ {
+ hostnameConfig.IdentityClientId = IdentityClientId;
+ }
}
else if (!string.IsNullOrWhiteSpace(PfxPath))
{
diff --git a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs
index 575c4f528d48..33603167c3a8 100644
--- a/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Commands/NewAzureApiManagementRegion.cs
@@ -43,6 +43,21 @@ public class NewAzureApiManagementRegion : AzureRMCmdlet
HelpMessage = "Virtual Network Configuration of Azure API Management deployment region. Default value is $null")]
public PsApiManagementVirtualNetwork VirtualNetwork { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A list of availability zones denoting where the api management service is deployed into.")]
+ [ValidateNotNullOrEmpty]
+ public string[] Zone { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "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. "+
+ "Default behavior is to make the region live immediately. ")]
+ public bool? DisableGateway { get; set; }
+
public override void ExecuteCmdlet()
{
WriteObject(
@@ -51,7 +66,9 @@ public override void ExecuteCmdlet()
Location = Location,
Sku = PsApiManagementSku.Premium, // additional regions are only supported in Premium Sku
Capacity = Capacity.HasValue ? Capacity.Value : 1,
- VirtualNetwork = VirtualNetwork
+ VirtualNetwork = VirtualNetwork,
+ Zone = Zone,
+ DisableGateway = DisableGateway
});
}
}
diff --git a/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs
index 0f891b0ad9a4..4192403701ad 100644
--- a/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Commands/UpdateAzureApiManagementRegion.cs
@@ -56,12 +56,32 @@ public class UpdateAzureApiManagementRegion : AzureApiManagementCmdletBase
"Passing $null will remove virtual network configuration for the region.")]
public PsApiManagementVirtualNetwork VirtualNetwork { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "A list of availability zones denoting where the api management service is deployed into.")]
+ [ValidateNotNullOrEmpty]
+ public string[] Zone { get; set; }
+
+ [Parameter(
+ Mandatory = false,
+ HelpMessage = "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.")]
+ public bool? DisableGateway { get; set; }
+
public override void ExecuteCmdlet()
{
ExecuteCmdLetWrap(
() =>
{
- ApiManagement.UpdateRegion(Location, Sku, Capacity, VirtualNetwork);
+ ApiManagement.UpdateRegion(
+ Location,
+ Sku,
+ Capacity,
+ VirtualNetwork,
+ Zone,
+ DisableGateway);
return ApiManagement;
},
diff --git a/src/ApiManagement/ApiManagement/Helpers/Extensions.cs b/src/ApiManagement/ApiManagement/Helpers/Extensions.cs
index 48e52f38d538..42057084d9a9 100644
--- a/src/ApiManagement/ApiManagement/Helpers/Extensions.cs
+++ b/src/ApiManagement/ApiManagement/Helpers/Extensions.cs
@@ -45,6 +45,11 @@ public static HostnameConfiguration GetHostnameConfiguration(
hostnameConfiguration.KeyVaultId = hostnameConfig.KeyVaultId;
}
+ if (!string.IsNullOrWhiteSpace(hostnameConfig.IdentityClientId))
+ {
+ hostnameConfiguration.IdentityClientId = hostnameConfig.IdentityClientId;
+ }
+
if (hostnameConfig.DefaultSslBinding.HasValue)
{
hostnameConfiguration.DefaultSslBinding = hostnameConfig.DefaultSslBinding.Value;
@@ -106,5 +111,38 @@ public static CertificateInformation GetCertificateInformation(this PsApiManagem
return certificateInformation;
}
+
+ public static AdditionalLocation GetAdditionalLocation(
+ this PsApiManagementRegion region)
+ {
+ if (region == null)
+ {
+ return null;
+ }
+
+ var additionalLocation = new AdditionalLocation();
+ additionalLocation.Location = region.Location;
+ additionalLocation.Sku = new ApiManagementServiceSkuProperties()
+ {
+ Name = Mappers.MapSku(region.Sku),
+ Capacity = region.Capacity
+ };
+
+ additionalLocation.VirtualNetworkConfiguration = region.VirtualNetwork == null
+ ? null
+ : new VirtualNetworkConfiguration
+ {
+ SubnetResourceId = region.VirtualNetwork.SubnetResourceId
+ };
+
+ additionalLocation.Zones = region.Zone;
+
+ if (region.DisableGateway != null && region.DisableGateway.HasValue)
+ {
+ additionalLocation.DisableGateway = region.DisableGateway;
+ }
+
+ return additionalLocation;
+ }
}
}
diff --git a/src/ApiManagement/ApiManagement/Helpers/Mappers.cs b/src/ApiManagement/ApiManagement/Helpers/Mappers.cs
index afc4ca6f5c43..931c3a7d9cdd 100644
--- a/src/ApiManagement/ApiManagement/Helpers/Mappers.cs
+++ b/src/ApiManagement/ApiManagement/Helpers/Mappers.cs
@@ -58,7 +58,8 @@ public static string MapSku(PsApiManagementSku sku)
case PsApiManagementSku.Premium: return SkuType.Premium;
case PsApiManagementSku.Basic: return SkuType.Basic;
case PsApiManagementSku.Consumption: return SkuType.Consumption;
- default: throw new ArgumentException("Unrecognized Sku");
+ case PsApiManagementSku.Isolated: return SkuType.Isolated;
+ default: throw new ArgumentException($"Unrecognized Sku '{sku.ToString()}'");
}
}
@@ -71,6 +72,7 @@ public static PsApiManagementSku MapSku(string sku)
case SkuType.Premium: return PsApiManagementSku.Premium;
case SkuType.Basic: return PsApiManagementSku.Basic;
case SkuType.Consumption: return PsApiManagementSku.Consumption;
+ case SkuType.Isolated: return PsApiManagementSku.Isolated;
default: throw new ArgumentException($"Unrecognized Sku '{sku}'");
}
}
@@ -132,7 +134,7 @@ public static ApiManagementServiceIdentity MapPsApiManagementIdentity(PsApiManag
return MapAssignedIdentity(systemAssigned , userIdentities);
}
-
+
public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement apiManagement)
{
var parameters = new ApiManagementServiceResource
@@ -148,7 +150,9 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
Name = MapSku(apiManagement.Sku)
},
Tags = apiManagement.Tags,
- EnableClientCertificate = apiManagement.EnableClientCertificate
+ EnableClientCertificate = apiManagement.EnableClientCertificate,
+ Zones = apiManagement.Zone,
+ DisableGateway = apiManagement.DisableGateway
};
if (apiManagement.VirtualNetwork != null)
@@ -177,12 +181,14 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
: new VirtualNetworkConfiguration
{
SubnetResourceId = region.VirtualNetwork.SubnetResourceId
- }
+ },
+ Zones = region.Zone,
+ DisableGateway = region.DisableGateway
})
.ToList();
}
- if (apiManagement.ProxyCustomHostnameConfiguration != null ||
+ if (apiManagement.ProxyCustomHostnameConfiguration != null ||
apiManagement.PortalCustomHostnameConfiguration != null ||
apiManagement.ManagementCustomHostnameConfiguration != null ||
apiManagement.ScmCustomHostnameConfiguration != null ||
@@ -192,7 +198,7 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
if (apiManagement.ProxyCustomHostnameConfiguration != null)
{
- foreach(var proxyCustomHostnameConfiguration in apiManagement.ProxyCustomHostnameConfiguration)
+ foreach (var proxyCustomHostnameConfiguration in apiManagement.ProxyCustomHostnameConfiguration)
{
parameters.HostnameConfigurations.Add(proxyCustomHostnameConfiguration.GetHostnameConfiguration());
}
@@ -218,12 +224,20 @@ public static ApiManagementServiceResource MapPsApiManagement(PsApiManagement ap
if (apiManagement.SystemCertificates != null)
{
parameters.Certificates = new List();
- foreach(var systemCertificate in apiManagement.SystemCertificates)
+ foreach (var systemCertificate in apiManagement.SystemCertificates)
{
parameters.Certificates.Add(systemCertificate.GetCertificateConfiguration());
}
}
+ if (!string.IsNullOrWhiteSpace(apiManagement.MinimalControlPlaneApiVersion))
+ {
+ parameters.ApiVersionConstraint = new ApiVersionConstraint()
+ {
+ MinApiVersion = apiManagement.MinimalControlPlaneApiVersion
+ };
+ }
+
if (apiManagement.Identity != null)
{
parameters.Identity = MapPsApiManagementIdentity(apiManagement.Identity);
@@ -268,6 +282,8 @@ private static List GetConnectivityStatus(ILi
connectivity.Status = connectivityStatus.Status;
connectivity.LastStatusChange = connectivityStatus.LastStatusChange;
connectivity.LastUpdated = connectivityStatus.LastUpdated;
+ connectivity.ResourceType = connectivityStatus.ResourceType;
+ connectivity.IsOptional = connectivityStatus.IsOptional;
aggregateStatus.Add(connectivity);
}
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs
index 17f37557ab8c..20eed565a72f 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagement.cs
@@ -60,7 +60,7 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource)
PrivateIPAddresses = apiServiceResource.PrivateIPAddresses != null ? apiServiceResource.PrivateIPAddresses.ToArray() : null;
EnableClientCertificate = apiServiceResource.EnableClientCertificate;
- VpnType = ApiManagementClient.Mapper.Map(apiServiceResource.VirtualNetworkType);
+ VpnType = ApiManagementClient.Mapper.Map(apiServiceResource.VirtualNetworkType);
if (apiServiceResource.AdditionalLocations != null)
{
@@ -140,6 +140,10 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource)
{
this.Identity = new PsApiManagementServiceIdentity(apiServiceResource.Identity);
}
+
+ Zone = apiServiceResource.Zones?.ToArray();
+ MinimalControlPlaneApiVersion = apiServiceResource.ApiVersionConstraint?.MinApiVersion;
+ DisableGateway = apiServiceResource.DisableGateway;
}
public string[] PublicIPAddresses { get; private set; }
@@ -204,6 +208,12 @@ public PsApiManagement(ApiManagementServiceResource apiServiceResource)
public bool? EnableClientCertificate { get; private set; }
+ public string[] Zone { get; set; }
+
+ public bool? DisableGateway { get; set; }
+
+ public string MinimalControlPlaneApiVersion { get; set; }
+
public string ResourceGroupName
{
get
@@ -231,7 +241,9 @@ public PsApiManagementRegion AddRegion(
string location,
PsApiManagementSku sku = PsApiManagementSku.Developer,
int capacity = 1,
- PsApiManagementVirtualNetwork virtualNetwork = null)
+ PsApiManagementVirtualNetwork virtualNetwork = null,
+ string[] zone = null,
+ bool? disableGateway = null)
{
if (location == null)
{
@@ -248,7 +260,9 @@ public PsApiManagementRegion AddRegion(
Location = location,
Sku = sku,
Capacity = capacity,
- VirtualNetwork = virtualNetwork
+ VirtualNetwork = virtualNetwork,
+ Zone = zone,
+ DisableGateway = disableGateway
};
AdditionalRegions.Add(newRegion);
@@ -275,25 +289,37 @@ public bool RemoveRegion(string location)
return regionToRemove != null && AdditionalRegions.Remove(regionToRemove);
}
- public void UpdateRegion(string location, PsApiManagementSku sku, int capacity, PsApiManagementVirtualNetwork virtualNetwork)
+ public void UpdateRegion(
+ string location,
+ PsApiManagementSku sku,
+ int capacity,
+ PsApiManagementVirtualNetwork virtualNetwork,
+ string[] zone,
+ bool? disableGateway)
{
if (location == null)
{
throw new ArgumentNullException("location");
}
- var regionToUpdate = AdditionalRegions.FirstOrDefault(r => location.Equals(r.Location));
+ var regionToUpdate = AdditionalRegions.FirstOrDefault(r => location.Trim().Equals(r.Location, StringComparison.OrdinalIgnoreCase));
if (regionToUpdate != null)
{
+ // if this is additional region
regionToUpdate.Sku = sku;
regionToUpdate.Capacity = capacity;
regionToUpdate.VirtualNetwork = virtualNetwork;
+ regionToUpdate.Zone = zone;
+ regionToUpdate.DisableGateway = disableGateway;
}
else if (location.Equals(Location))
{
+ // if this is master region
Sku = sku;
Capacity = capacity;
VirtualNetwork = virtualNetwork;
+ Zone = zone;
+ DisableGateway = disableGateway;
}
else
{
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementConnectivityStatus.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementConnectivityStatus.cs
index f1db41b9b5fd..587d93365543 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementConnectivityStatus.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementConnectivityStatus.cs
@@ -41,17 +41,25 @@ public class PsApiManagementConnectivityStatus
/// has lost network connectivity to the resource, from inside the
/// Virtual Network.The date conforms to the following format:
/// `yyyy-MM-ddTHH:mm:ssZ` as specified by the ISO 8601 standard.
- ///
///
public System.DateTime LastUpdated { get; set; }
///
- /// Gets or sets the date when the resource connectivity status last
+ /// Gets the date when the resource connectivity status last
/// Changed from success to failure or vice-versa. The date conforms to
/// the following format: `yyyy-MM-ddTHH:mm:ssZ` as specified by the
/// ISO 8601 standard.
- ///
///
public System.DateTime LastStatusChange { get; set; }
+
+ ///
+ /// Gets the resourceType.
+ ///
+ public string ResourceType { get; set; }
+
+ ///
+ /// Gets whether Resourcetype is optional.
+ ///
+ public bool? IsOptional { get; set; }
}
}
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs
index c78e14e90d08..5c38388ea026 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementCustomHostNameConfiguration.cs
@@ -35,6 +35,7 @@ internal PsApiManagementCustomHostNameConfiguration(HostnameConfiguration hostna
CertificateInformation = hostnameConfigurationResource.Certificate != null ? new PsApiManagementCertificateInformation(hostnameConfigurationResource.Certificate) : null;
Hostname = hostnameConfigurationResource.HostName;
KeyVaultId = hostnameConfigurationResource.KeyVaultId;
+ IdentityClientId = hostnameConfigurationResource.IdentityClientId;
DefaultSslBinding = hostnameConfigurationResource.DefaultSslBinding;
NegotiateClientCertificate = hostnameConfigurationResource.NegotiateClientCertificate;
HostnameType = Mappers.MapHostnameType(hostnameConfigurationResource.Type);
@@ -55,5 +56,7 @@ internal PsApiManagementCustomHostNameConfiguration(HostnameConfiguration hostna
public bool? DefaultSslBinding { get; set; }
public bool? NegotiateClientCertificate { get; set; }
+
+ public string IdentityClientId { get; set; }
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementHostnameType.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementHostnameType.cs
index cade05e36794..be36202638fd 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementHostnameType.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementHostnameType.cs
@@ -21,6 +21,8 @@ public enum PsApiManagementHostnameType
Portal = 2,
Management = 3,
Scm = 4,
- DeveloperPortal = 5
+ DeveloperPortal = 5,
+ Configuration = 6,
+ Data = 7
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs
index 838c05af74ce..c720d5f14c19 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementRegion.cs
@@ -39,6 +39,8 @@ internal PsApiManagementRegion(AdditionalLocation additionalLocation)
RuntimeRegionalUrl = additionalLocation.GatewayRegionalUrl;
PublicIPAddresses = additionalLocation.PublicIPAddresses != null ? additionalLocation.PublicIPAddresses.ToArray() : null;
PrivateIPAddresses = additionalLocation.PrivateIPAddresses != null ? additionalLocation.PrivateIPAddresses.ToArray() : null;
+ Zone = additionalLocation.Zones?.ToArray();
+ DisableGateway = additionalLocation.DisableGateway;
if (additionalLocation.VirtualNetworkConfiguration != null)
{
VirtualNetwork = new PsApiManagementVirtualNetwork(additionalLocation.VirtualNetworkConfiguration);
@@ -58,5 +60,9 @@ internal PsApiManagementRegion(AdditionalLocation additionalLocation)
public string Location { get; set; }
public string RuntimeRegionalUrl { get; set; }
+
+ public string[] Zone { get; set; }
+
+ public bool? DisableGateway { get; set; }
}
}
\ No newline at end of file
diff --git a/src/ApiManagement/ApiManagement/Models/PsApiManagementSku.cs b/src/ApiManagement/ApiManagement/Models/PsApiManagementSku.cs
index 3fc4085688f6..7762f03663a3 100644
--- a/src/ApiManagement/ApiManagement/Models/PsApiManagementSku.cs
+++ b/src/ApiManagement/ApiManagement/Models/PsApiManagementSku.cs
@@ -21,6 +21,7 @@ public enum PsApiManagementSku
Standard = 2,
Premium = 3,
Basic = 4,
- Consumption = 5
+ Consumption = 5,
+ Isolated = 6
}
}
\ 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 43f19800304a..9b664e013f1a 100644
--- a/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md
+++ b/src/ApiManagement/ApiManagement/help/Add-AzApiManagementRegion.md
@@ -15,8 +15,8 @@ Adds new deployment regions to a PsApiManagement instance.
```
Add-AzApiManagementRegion -ApiManagement -Location [-Sku ]
- [-Capacity ] [-VirtualNetwork ]
- [-DefaultProfile ] []
+ [-Capacity ] [-VirtualNetwork ] [-Zone ]
+ [-DisableGateway ] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -89,6 +89,22 @@ Accept pipeline input: False
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.
+ Default behavior is to make the region live immediately.
+
+```yaml
+Type: System.Nullable`1[System.Boolean]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Location
Specifies the location of the new deployment region amongst the supported region for Api Management service.
To obtain valid locations, use the cmdlet
@@ -117,7 +133,7 @@ Valid values are:
Type: System.Nullable`1[Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSku]
Parameter Sets: (All)
Aliases:
-Accepted values: Developer, Standard, Premium, Basic, Consumption
+Accepted values: Developer, Standard, Premium, Basic, Consumption, Isolated
Required: False
Position: Named
@@ -141,6 +157,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -Zone
+A list of availability zones denoting where the api management service is deployed into.
+
+```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/Az.ApiManagement.md b/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md
index 159209d656d7..0d8cbb6156bf 100644
--- a/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Az.ApiManagement.md
@@ -209,6 +209,9 @@ Creates an instance of **PsApiManagementHttpMessageDiagnostic** which is an Http
### [New-AzApiManagementIdentityProvider](New-AzApiManagementIdentityProvider.md)
Creates a new Identity Provider configuration.
+### [New-AzApiManagementKeyVaultObject](New-AzApiManagementKeyVaultObject.md)
+Creates an instance of PsApiManagementKeyVaultObject.
+
### [New-AzApiManagementLogger](New-AzApiManagementLogger.md)
Creates an API Management Logger.
@@ -342,7 +345,7 @@ Deletes an existing user.
Removes a user from a group.
### [Restore-AzApiManagement](Restore-AzApiManagement.md)
-Restores an API Management Service from the specified Azure storage blob.
+Restores an API Management Service from the specified Azure Storage blob.
### [Save-AzApiManagementTenantGitConfiguration](Save-AzApiManagementTenantGitConfiguration.md)
Saves changes by creating a commit for current configuration.
@@ -407,6 +410,9 @@ Enables or disables tenant access.
### [Set-AzApiManagementUser](Set-AzApiManagementUser.md)
Sets user details.
+### [Sync-AzApiManagementKeyVaultSecret](Sync-AzApiManagementKeyVaultSecret.md)
+Refreshes NamedValue or Certificate created by KeyVault.
+
### [Update-AzApiManagementApiRelease](Update-AzApiManagementApiRelease.md)
Updates a particular Api Release.
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md
index c84052d516e4..89561b2fb82d 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagement.md
@@ -22,7 +22,8 @@ New-AzApiManagement -ResourceGroupName -Name -Location ]
[-SystemCertificateConfiguration ]
[-SslSetting ] [-SystemAssignedIdentity] [-UserAssignedIdentity ]
- [-EnableClientCertificate] [-DefaultProfile ] []
+ [-EnableClientCertificate] [-Zone ] [-DisableGateway ]
+ [-MinimalControlPlaneApiVersion ] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -166,6 +167,48 @@ 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
+```powershell
+PS D:\> 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")
+
+PublicIPAddresses : {52.238.252.170}
+PrivateIPAddresses :
+Id : /subscriptions/aa7def4e-6bcd-4b28-b8d5-7613a618e753/resourceGroups/contoso-rg/providers/Microsoft.ApiManagement/service/apim-test-pshell-azs
+Name : apim-test-pshell-azs
+Location : Central US
+Sku : Premium
+Capacity : 3
+CreatedTimeUtc : 7/30/2021 7:47:12 PM
+ProvisioningState : Succeeded
+RuntimeUrl : https://apim-test-pshell-azs.azure-api.net
+RuntimeRegionalUrl : https://apim-test-pshell-azs-centralus-01.regional.azure-api.net
+PortalUrl : https://apim-test-pshell-azs.portal.azure-api.net
+DeveloperPortalUrl : https://apim-test-pshell-azs.developer.azure-api.net
+ManagementApiUrl : https://apim-test-pshell-azs.management.azure-api.net
+ScmUrl : https://apim-test-pshell-azs.scm.azure-api.net
+PublisherEmail : admin@contoso.com
+OrganizationName : Contoso
+NotificationSenderEmail : apimgmt-noreply@mail.windowsazure.com
+VirtualNetwork :
+VpnType : None
+PortalCustomHostnameConfiguration :
+ProxyCustomHostnameConfiguration : {apim-test-pshell-azs.azure-api.net}
+ManagementCustomHostnameConfiguration :
+ScmCustomHostnameConfiguration :
+DeveloperPortalHostnameConfiguration :
+SystemCertificates :
+Tags : {}
+AdditionalRegions : {}
+SslSetting : Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementSslSetting
+Identity :
+EnableClientCertificate :
+Zone : {1, 2, 3}
+DisableGateway : False
+MinimalControlPlaneApiVersion :
+ResourceGroupName : contoso-rg
+```
+This command creates a Premium SKU Api Management service in Zones
+
## PARAMETERS
### -AdditionalRegions
@@ -244,6 +287,21 @@ Accept pipeline input: False
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
+Type: System.Nullable`1[System.Boolean]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+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.
@@ -276,6 +334,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -MinimalControlPlaneApiVersion
+Minimal Control Plane Apis version to allow for managing the API Management service.
+
+```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 a name for the API Management deployment.
@@ -452,6 +525,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -Zone
+A list of availability zones denoting where the api management service is deployed into.
+
+```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-AzApiManagementBackendCredential.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendCredential.md
index 8ce94505e439..e2cfb566654d 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendCredential.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendCredential.md
@@ -13,9 +13,9 @@ Creates a new Backend Credential contract.
## SYNTAX
```
-New-AzApiManagementBackendCredential [-CertificateThumbprint ] [-Query ]
- [-Header ] [-AuthorizationHeaderScheme ] [-AuthorizationHeaderParameter ]
- [-DefaultProfile ] []
+New-AzApiManagementBackendCredential [-CertificateThumbprint ] [-CertificateId ]
+ [-Query ] [-Header ] [-AuthorizationHeaderScheme ]
+ [-AuthorizationHeaderParameter ] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -67,6 +67,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -CertificateId
+Client Certificate Id. This parameter is optional.
+
+```yaml
+Type: System.String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -CertificateThumbprint
Client Certificate Thumbprints.
This parameter is optional.
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendServiceFabric.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendServiceFabric.md
index ec687c9a2b73..6bd0c569a4c3 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendServiceFabric.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementBackendServiceFabric.md
@@ -13,9 +13,9 @@ Creates an object of `PsApiManagementServiceFabric`
## SYNTAX
```
-New-AzApiManagementBackendServiceFabric -ManagementEndpoint -ClientCertificateThumbprint
- [-MaxPartitionResolutionRetry ] [-ServerX509Name ] [-ServerCertificateThumbprint ]
- [-DefaultProfile ] []
+New-AzApiManagementBackendServiceFabric -ManagementEndpoint [-ClientCertificateThumbprint ]
+ [-ClientCertificateId ] [-MaxPartitionResolutionRetry ] [-ServerX509Name ]
+ [-ServerCertificateThumbprint ] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -39,6 +39,21 @@ Creates a Backend Service Fabric Contract
## PARAMETERS
+### -ClientCertificateId
+Client Certificate Id for the management endpoint. 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
+```
+
### -ClientCertificateThumbprint
Client Certificate Thumbprint for the management endpoint.
This parameter is required.
@@ -48,7 +63,7 @@ Type: System.String
Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCache.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCache.md
index c85b4766ea43..ee2c67c6eb2f 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCache.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCache.md
@@ -14,8 +14,8 @@ Creates a new Cache entity
```
New-AzApiManagementCache -Context [-CacheId ] -ConnectionString
- [-AzureRedisResourceId ] [-Description ] [-DefaultProfile ] [-WhatIf]
- [-Confirm] []
+ [-AzureRedisResourceId ] [-Description ] [-UseFromLocation ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -136,6 +136,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -UseFromLocation
+Cache UseFromLocation. This parameter is optional, default value 'default'.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Confirm
Prompts you for confirmation before running the cmdlet.
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md
index 0cd283530e55..6b802d153023 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCertificate.md
@@ -16,13 +16,15 @@ Creates an API Management certificate to be used during Authentication with Back
### LoadFromFile (Default)
```
New-AzApiManagementCertificate -Context [-CertificateId ]
- -PfxFilePath -PfxPassword [-DefaultProfile ] []
+ [-PfxFilePath ] [-PfxPassword ] [-KeyVault ]
+ [-DefaultProfile ] []
```
### Raw
```
-New-AzApiManagementCertificate -Context [-CertificateId ] -PfxBytes
- -PfxPassword [-DefaultProfile ] []
+New-AzApiManagementCertificate -Context [-CertificateId ] [-PfxBytes ]
+ [-PfxPassword ] [-KeyVault ] [-DefaultProfile ]
+ []
```
## DESCRIPTION
@@ -47,6 +49,16 @@ Creates an API Management certificate to be used during Authentication with Back
New-AzApiManagementCertificate -CertificateId '0123456789' -Context -PfxFilePath 'C:\contoso\certificates\apimanagement.pfx' -PfxPassword '1111'
```
+### Example 3 : Create a keyVault Certificate
+```powershell
+PS C:\>$secretIdentifier = 'https://contoso.vault.azure.net/secrets/xxxx'
+PS C:\>$keyvault = New-AzApiManagementKeyVaultObject -SecretIdentifier $secretIdentifier
+PS C:\>$keyVaultcert = New-AzApiManagementCertificate -Context $context -CertificateId $kvcertId -KeyVault $keyvault
+```
+
+The first command creates a keyvault.
+The second command creates a certificate using secret from this keyvault.
+
## PARAMETERS
### -CertificateId
@@ -95,6 +107,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -KeyVault
+KeyVault used to fetch certificate data.This parameter is required if -PfxFilePath not specified.
+See New-AzApiManagementKeyVaultObject for details.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -PfxBytes
Specifies an array of bytes of the certificate file in .pfx format.
This parameter is required if you do not specify the *PfxFilePath* parameter.
@@ -104,7 +132,7 @@ Type: System.Byte[]
Parameter Sets: Raw
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -120,7 +148,7 @@ Type: System.String
Parameter Sets: LoadFromFile
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -135,7 +163,7 @@ Type: System.String
Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md
index 91ddea0c2f7e..20883dac9826 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementCustomHostnameConfiguration.md
@@ -29,7 +29,7 @@ New-AzApiManagementCustomHostnameConfiguration -Hostname -HostnameType
### SslCertificateFromKeyVault
```
New-AzApiManagementCustomHostnameConfiguration -Hostname -HostnameType
- -KeyVaultId [-DefaultSslBinding] [-NegotiateClientCertificate]
+ -KeyVaultId [-IdentityClientId ] [-DefaultSslBinding] [-NegotiateClientCertificate]
[-DefaultProfile ] []
```
@@ -129,7 +129,7 @@ Hostname Type
Type: Microsoft.Azure.Commands.ApiManagement.Models.PsApiManagementHostnameType
Parameter Sets: (All)
Aliases:
-Accepted values: Proxy, Portal, Management, Scm, DeveloperPortal
+Accepted values: Proxy, Portal, Management, Scm, DeveloperPortal, Configuration, Data
Required: True
Position: Named
@@ -138,6 +138,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -IdentityClientId
+User-Assigned Managed Identity ClientId used to authenticate to KeyVault to fetch Custom SSL Certificate.
+
+```yaml
+Type: System.String
+Parameter Sets: SslCertificateFromKeyVault
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -KeyVaultId
KeyVaultId to the secret storing the Custom SSL Certificate.
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementKeyVaultObject.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementKeyVaultObject.md
new file mode 100644
index 000000000000..85da6acce7d7
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementKeyVaultObject.md
@@ -0,0 +1,106 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/powershell/module/az.apimanagement/new-azapimanagementkeyvaultobject
+schema: 2.0.0
+---
+
+# New-AzApiManagementKeyVaultObject
+
+## SYNOPSIS
+Creates an instance of PsApiManagementKeyVaultObject.
+
+## SYNTAX
+
+```
+New-AzApiManagementKeyVaultObject -SecretIdentifier [-IdentityClientId ]
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **New-AzApiManagementKeyVaultObject** cmdlet creates an instance of PsApiManagementKeyVaultObjecte.
+
+## EXAMPLES
+
+### Example 1 : Create a keyVault Namedvalue
+```powershell
+PS C:\>$secretIdentifier = 'https://contoso.vault.azure.net/secrets/xxxx'
+PS C:\>$keyvault = New-AzApiManagementKeyVaultObject -SecretIdentifier $secretIdentifier
+PS C:\>$keyVaultNamedValue = New-AzApiManagementNamedValue -Context $context -NamedValueId $keyVaultNamedValueId -Name $keyVaultNamedValueName -keyVault $keyvault -Secret
+```
+
+The first command creates a keyvault.
+The second command creates a named value using secret from this keyvault.
+
+### Example 2 : Create a keyVault Certificate
+```powershell
+PS C:\>$secretIdentifier = 'https://contoso.vault.azure.net/secrets/xxxx'
+PS C:\>$keyvault = New-AzApiManagementKeyVaultObject -SecretIdentifier $secretIdentifier
+PS C:\>$keyVaultcert = New-AzApiManagementCertificate -Context $context -CertificateId $kvcertId -KeyVault $keyvault
+```
+
+The first command creates a keyvault.
+The second command creates a certificate using secret from this keyvault.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -IdentityClientId
+Identity Client Id of the user-assigned Managed Identity.
+Will default system-assigned if leave empty.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -SecretIdentifier
+Secret Identifier of this Key Vault.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+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
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md
index 50b3c41705da..3da0bcbcc161 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementNamedValue.md
@@ -13,9 +13,9 @@ Creates new Named Value.
## SYNTAX
```
-New-AzApiManagementNamedValue -Context [-NamedValueId ] -Name
- -Value [-Secret] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+New-AzApiManagementNamedValue -Context [-NamedValueId ] [-Name ]
+ [-Value ] [-Secret] [-Tag ] [-KeyVault ]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -41,6 +41,16 @@ PS C:\>New-AzApiManagementNamedValue -Context $apimContext -NamedValueId "Proper
This command creates a **Named Value** that has a value that is encrypted.
+### Example 3 : Create a keyVault Namedvalue
+```powershell
+PS C:\>$secretIdentifier = 'https://contoso.vault.azure.net/secrets/xxxx'
+PS C:\>$keyvault = New-AzApiManagementKeyVaultObject -SecretIdentifier $secretIdentifier
+PS C:\>$keyVaultNamedValue = New-AzApiManagementNamedValue -Context $context -NamedValueId $keyVaultNamedValueId -Name $keyVaultNamedValueName -keyVault $keyvault -Secret
+```
+
+The first command creates a keyvault.
+The second command creates a named value using secret from this keyvault.
+
## PARAMETERS
### -Context
@@ -74,6 +84,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -KeyVault
+KeyVault used to fetch Namedvalue data.This parameter is required if Value not specified.
+See New-AzApiManagementKeyVaultObject for details.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Name
Name of the named value.
Maximum length is 100 characters.
@@ -85,7 +111,7 @@ Type: System.String
Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -154,7 +180,7 @@ Type: System.String
Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
diff --git a/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md
index 0ad41e662325..1e05669872e3 100644
--- a/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md
+++ b/src/ApiManagement/ApiManagement/help/New-AzApiManagementRegion.md
@@ -15,8 +15,8 @@ Creates an instance of PsApiManagementRegion.
```
New-AzApiManagementRegion -Location [-Capacity ]
- [-VirtualNetwork ] [-DefaultProfile ]
- []
+ [-VirtualNetwork ] [-Zone ] [-DisableGateway ]
+ [-DefaultProfile ] []
```
## DESCRIPTION
@@ -82,6 +82,22 @@ Accept pipeline input: False
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.
+ Default behavior is to make the region live immediately.
+
+```yaml
+Type: System.Nullable`1[System.Boolean]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Location
Specifies the location of the new deployment region amongst the supported region for Api Management service.
To obtain valid locations, use the cmdlet
@@ -115,6 +131,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -Zone
+A list of availability zones denoting where the api management service is deployed into.
+
+```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/Set-AzApiManagement.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md
index 486a3c3db12e..fe405b14a39f 100644
--- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md
+++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagement.md
@@ -36,7 +36,7 @@ This example gets an Api Management instance, scales it to five premium units an
### Example 2: Update deployment (external VNET)
```powershell
-PS C:\> $virtualNetwork = New-AzApiManagementVirtualNetwork -Location "East US" -SubnetResourceId "/subscriptions/a8ff56dc-3bc7-4174-a1e8-3726ab15d0e2/resourceGroups/Api-Default-WestUS/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet"
+PS C:\> $virtualNetwork = New-AzApiManagementVirtualNetwork -SubnetResourceId "/subscriptions/a8ff56dc-3bc7-4174-a1e8-3726ab15d0e2/resourceGroups/Api-Default-WestUS/providers/Microsoft.Network/virtualNetworks/dfVirtualNetwork/subnets/backendSubnet"
PS C:\> $apim = Get-AzApiManagement -ResourceGroupName "ContosoGroup" -Name "ContosoApi"
PS C:\> $apim.VpnType = "External"
PS C:\> $apim.VirtualNetwork = $virtualNetwork
diff --git a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementCertificate.md b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementCertificate.md
index c38398233785..78288271d1a2 100644
--- a/src/ApiManagement/ApiManagement/help/Set-AzApiManagementCertificate.md
+++ b/src/ApiManagement/ApiManagement/help/Set-AzApiManagementCertificate.md
@@ -15,14 +15,16 @@ Modifies an API Management certificate which is configured for mutual authentica
### LoadFromFile (Default)
```
-Set-AzApiManagementCertificate -Context -CertificateId -PfxFilePath
- -PfxPassword [-PassThru] [-DefaultProfile ] []
+Set-AzApiManagementCertificate -Context -CertificateId
+ [-PfxFilePath ] [-PfxPassword ] [-PassThru] [-KeyVault ]
+ [-DefaultProfile ] []
```
### Raw
```
-Set-AzApiManagementCertificate -Context -CertificateId -PfxBytes
- -PfxPassword [-PassThru] [-DefaultProfile ] []
+Set-AzApiManagementCertificate -Context -CertificateId [-PfxBytes ]
+ [-PfxPassword ] [-PassThru] [-KeyVault ]
+ [-DefaultProfile ] []
```
## DESCRIPTION
@@ -85,6 +87,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -KeyVault
+KeyVault used to fetch certificate data.This parameter is required if -PfxFilePath not specified.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -PassThru
passthru
@@ -109,7 +126,7 @@ Type: System.Byte[]
Parameter Sets: Raw
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -125,7 +142,7 @@ Type: System.String
Parameter Sets: LoadFromFile
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
@@ -140,7 +157,7 @@ Type: System.String
Parameter Sets: (All)
Aliases:
-Required: True
+Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
diff --git a/src/ApiManagement/ApiManagement/help/Sync-AzApiManagementKeyVaultSecret.md b/src/ApiManagement/ApiManagement/help/Sync-AzApiManagementKeyVaultSecret.md
new file mode 100644
index 000000000000..ad2350f0c4b7
--- /dev/null
+++ b/src/ApiManagement/ApiManagement/help/Sync-AzApiManagementKeyVaultSecret.md
@@ -0,0 +1,154 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.ApiManagement.ServiceManagement.dll-Help.xml
+Module Name: Az.ApiManagement
+online version: https://docs.microsoft.com/powershell/module/az.apimanagement/sync-azapimanagementkeyvaultsecret
+schema: 2.0.0
+---
+
+# Sync-AzApiManagementKeyVaultSecret
+
+## SYNOPSIS
+Refreshes NamedValue or Certificate created by KeyVault.
+
+## SYNTAX
+
+### ResourceIdParameterSet (Default)
+```
+Sync-AzApiManagementKeyVaultSecret -ResourceId [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+### ByInputObject
+```
+Sync-AzApiManagementKeyVaultSecret [-InputObjectCert ]
+ [-InputObjectNamedvalue ] [-DefaultProfile ] [-WhatIf]
+ [-Confirm] []
+```
+
+## DESCRIPTION
+Refreshes NamedValue or Certificate created by KeyVault.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\>$apimContext = New-AzApiManagementContext -ResourceGroupName "Api-Default-WestUS" -ServiceName "contoso"
+PS C:\>Get-AzApiManagementCertificate -ResourceId $kvcert.Id | Sync-AzApiManagementKeyVaultObject
+```
+
+This command refreshes NamedValue or Certificate created by KeyVault.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObjectCert
+Instance of PsApiManagementCert.
+This parameter or NameValue is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate
+Parameter Sets: ByInputObject
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -InputObjectNamedvalue
+Instance of PsApiManagementNamedvalue.
+This parameter or Certificate is required.
+
+```yaml
+Type: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue
+Parameter Sets: ByInputObject
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -ResourceId
+Arm ResourceId of the Keyvault Based object.
+This parameter is required.
+
+```yaml
+Type: System.String
+Parameter Sets: ResourceIdParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+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
+
+### System.String
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementCertificate
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementNamedValue
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models.PsApiManagementKeyVaultEntity
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementCache.md b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementCache.md
index 395cc6643613..27955c2dea1c 100644
--- a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementCache.md
+++ b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementCache.md
@@ -15,22 +15,22 @@ updates a cache in Api Management service.
### ExpandedParameter (Default)
```
Update-AzApiManagementCache -Context -CacheId [-ConnectionString ]
- [-AzureRedisResourceId ] [-Description ] [-PassThru]
+ [-AzureRedisResourceId ] [-Description ] [-UseFromLocation ] [-PassThru]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### ByInputObject
```
Update-AzApiManagementCache -InputObject [-ConnectionString ]
- [-AzureRedisResourceId ] [-Description ] [-PassThru]
+ [-AzureRedisResourceId ] [-Description ] [-UseFromLocation ] [-PassThru]
[-DefaultProfile ] [-WhatIf] [-Confirm] []
```
### ByResourceId
```
Update-AzApiManagementCache -ResourceId [-ConnectionString ] [-AzureRedisResourceId ]
- [-Description ] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm]
- []
+ [-Description ] [-UseFromLocation ] [-PassThru] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -200,6 +200,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -UseFromLocation
+Cache UseFromLocation. This parameter is optional, default value 'default'.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -Confirm
Prompts you for confirmation before running the cmdlet.
diff --git a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md
index e0393711cf9c..d543ebad5d10 100644
--- a/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md
+++ b/src/ApiManagement/ApiManagement/help/Update-AzApiManagementRegion.md
@@ -15,8 +15,8 @@ Updates existing deployment region in PsApiManagement instance.
```
Update-AzApiManagementRegion -ApiManagement -Location -Sku
- -Capacity [-VirtualNetwork ] [-DefaultProfile ]
- [