From 29a95b777289927f2bedbd910ffab678a5aab1a6 Mon Sep 17 00:00:00 2001
From: Samir Solanki
Date: Fri, 9 Mar 2018 14:03:31 -0800
Subject: [PATCH 1/2] Fix ApiRevisionId and other test fixes
---
.../ApiExportImportTests.cs | 4 +-
.../ManagementApiTests/LoggerTests.cs | 32 +-
.../ManagementApiTests/UserTests.cs | 2 +-
.../SwaggerTest.json | 138 +++--
.../WadlTest.json | 138 +++--
.../WsdlTest.json | 114 ++--
.../CreateListUpdateDelete.json | 380 ++++++------
.../CreateListUpdateDelete.json | 84 +--
.../CreateListUpdateDelete.json | 490 ++++++++--------
.../CreateListUpdateDelete.json | 274 ++++-----
.../CreateListUpdateDelete.json | 350 ++++++-----
.../CreateListUpdateDelete.json | 214 +++----
.../CreateListUpdateDelete.json | 269 +++++----
.../CreateListUpdateDelete.json | 274 +++++----
.../ServiceFabricCreateUpdateDelete.json | 289 +++++----
.../CreateListUpdateDelete.json | 193 +++---
.../CreateUpdateReset.json | 142 ++---
.../CreateListUpdateDelete.json | 391 +++++++------
.../CreateListUpdateDelete.json | 154 ++---
.../CreateListUpdateDelete.json | 244 ++++----
.../CreateListUpdateDelete.json | 270 +++++----
.../CreateListUpdateDelete.json | 182 +++---
...teListUpdateDeleteApplicationInsights.json | 386 ++++++++----
.../CreateListUpdateDeleteEventHub.json | 550 ++++++++++++------
.../UpdateDeleteRecipientEmail.json | 130 +++--
.../UpdateDeleteRecipientUser.json | 157 ++---
.../CreateListUpdateDelete.json | 434 ++++++++------
.../CreateListUpdateDelete.json | 386 ++++++------
.../CreateListUpdateDelete.json | 244 ++++----
.../ApisListAddRemove.json | 161 ++---
.../CreateListUpdateDelete.json | 212 +++----
.../GroupsListAddRemove.json | 157 ++---
.../SubscriptionsList.json | 76 ++-
.../CreateListUpdateDelete.json | 353 ++++++-----
.../List.json | 55 +-
.../Query.json | 130 ++---
.../CreateUpdateReset.json | 120 ++--
.../CreateUpdateReset.json | 104 ++--
.../CreateListUpdateDelete.json | 389 +++++++------
.../CreateListUpdateDelete.json | 447 +++++++-------
.../CreateListUpdateDeleteApiTags.json | 356 +++++++-----
.../CreateListUpdateDeleteOperationTags.json | 376 +++++++-----
.../CreateListUpdateDeleteProductTags.json | 339 ++++++-----
.../GetUpdateKeys.json | 135 +++--
.../EnableGetAndUpdateKeys.json | 196 ++++---
.../ValidateSaveDeploy.json | 238 ++++----
.../CreateListUpdateDelete.json | 235 ++++----
.../GroupsListAddRemove.json | 288 +++++----
.../SubscriptionsList.json | 112 ++--
.../UserIdentities.json | 70 ++-
.../Models/LoggerContractExtension.cs | 51 ++
.../Generated/ApiExportOperations.cs | 13 +-
.../ApiExportOperationsExtensions.cs | 10 +-
.../Generated/ApiOperationOperations.cs | 13 +-
.../ApiOperationOperationsExtensions.cs | 10 +-
.../Generated/ApiOperationPolicyOperations.cs | 26 +-
.../ApiOperationPolicyOperationsExtensions.cs | 20 +-
.../Generated/ApiPolicyOperations.cs | 26 +-
.../ApiPolicyOperationsExtensions.cs | 20 +-
.../Generated/ApiSchemaOperations.cs | 65 ++-
.../ApiSchemaOperationsExtensions.cs | 50 +-
.../Generated/IApiExportOperations.cs | 5 +-
.../Generated/IApiOperationOperations.cs | 5 +-
.../IApiOperationPolicyOperations.cs | 10 +-
.../Generated/IApiPolicyOperations.cs | 10 +-
.../Generated/IApiSchemaOperations.cs | 25 +-
.../Generated/IOperationOperations.cs | 5 +-
.../Generated/ITagDescriptionOperations.cs | 25 +-
.../Generated/ITagOperations.cs | 50 +-
.../Models/ApiCreateOrUpdateParameter.cs | 4 +-
.../Generated/Models/SoapApiType.cs | 10 +-
.../Generated/OperationOperations.cs | 13 +-
.../OperationOperationsExtensions.cs | 10 +-
.../Generated/TagDescriptionOperations.cs | 65 ++-
.../TagDescriptionOperationsExtensions.cs | 50 +-
.../Generated/TagOperations.cs | 130 +++--
.../Generated/TagOperationsExtensions.cs | 100 ++--
.../apimanagement_resource-manager.txt | 4 +-
78 files changed, 6956 insertions(+), 5333 deletions(-)
create mode 100644 src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs
index 2de990065acd2..ae834bad57331 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/ApiExportImportTests.cs
@@ -166,7 +166,7 @@ public async Task WsdlTest()
Path = path,
ContentFormat = ContentFormat.Wsdl,
ContentValue = wsdlApiContent,
- SoapApiType = SoapApiType.Soap, // create Soap Pass through API
+ SoapApiType = SoapApiType.SoapPassThrough, // create Soap Pass through API
WsdlSelector = new ApiCreateOrUpdatePropertiesWsdlSelector()
{
WsdlServiceName = "Weather",
@@ -181,7 +181,7 @@ public async Task WsdlTest()
apiCreateOrUpdate);
Assert.NotNull(wsdlApiResponse);
- Assert.Equal(SoapApiType.Soap, wsdlApiResponse.ApiType);
+ Assert.Equal(SoapApiType.SoapPassThrough, wsdlApiResponse.ApiType);
// get the api to check it was created
var apiContract = testBase.client.Api.Get(
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/LoggerTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/LoggerTests.cs
index b42ec22186127..55b7d6f32d024 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/LoggerTests.cs
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/LoggerTests.cs
@@ -31,7 +31,7 @@ public async Task CreateListUpdateDeleteEventHub()
string newloggerId = TestUtilities.GenerateName("newlogger");
string eventHubNameSpaceName = TestUtilities.GenerateName("eventHubNamespace");
string eventHubName = TestUtilities.GenerateName("eventhubname");
-
+
try
{
// first create the event hub namespace
@@ -131,6 +131,7 @@ public async Task CreateListUpdateDeleteEventHub()
Assert.Equal(newloggerId, loggerContract.Name);
Assert.Equal(patchedDescription, loggerContract.Description);
Assert.NotNull(loggerContract.Credentials);
+ Assert.NotNull(loggerContract.CredentialsPropertyName);
// get the logger tag
loggerTag = await testBase.client.Logger.GetEntityTagAsync(
@@ -161,6 +162,18 @@ public async Task CreateListUpdateDeleteEventHub()
finally
{
testBase.client.Logger.Delete(testBase.rgName, testBase.serviceName, newloggerId, "*");
+ // clean up all properties
+ var listOfProperties = testBase.client.Property.ListByService(
+ testBase.rgName,
+ testBase.serviceName);
+ foreach (var property in listOfProperties)
+ {
+ testBase.client.Property.Delete(
+ testBase.rgName,
+ testBase.serviceName,
+ property.Name,
+ "*");
+ }
testBase.eventHubClient.EventHubs.Delete(testBase.rgName, eventHubNameSpaceName, eventHubName);
testBase.eventHubClient.Namespaces.Delete(testBase.rgName, eventHubNameSpaceName);
}
@@ -177,7 +190,7 @@ public async Task CreateListUpdateDeleteApplicationInsights()
testBase.TryCreateApiManagementService();
string newloggerId = TestUtilities.GenerateName("applicationInsight");
-
+
try
{
// now create logger using the event
@@ -241,6 +254,7 @@ public async Task CreateListUpdateDeleteApplicationInsights()
Assert.Equal(newloggerId, loggerContract.Name);
Assert.Equal(patchedDescription, loggerContract.Description);
Assert.NotNull(loggerContract.Credentials);
+ Assert.NotNull(loggerContract.CredentialsPropertyName);
// get the logger tag
loggerTag = await testBase.client.Logger.GetEntityTagAsync(
@@ -270,7 +284,19 @@ public async Task CreateListUpdateDeleteApplicationInsights()
}
finally
{
- testBase.client.Logger.Delete(testBase.rgName, testBase.serviceName, newloggerId, "*");
+ testBase.client.Logger.Delete(testBase.rgName, testBase.serviceName, newloggerId, "*");
+ var listOfProperties = testBase.client.Property.ListByService(
+ testBase.rgName,
+ testBase.serviceName);
+
+ foreach (var property in listOfProperties)
+ {
+ testBase.client.Property.Delete(
+ testBase.rgName,
+ testBase.serviceName,
+ property.Name,
+ "*");
+ }
}
}
}
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs
index e41b6fbbcc08e..ca2401edafd7e 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/ManagementApiTests/UserTests.cs
@@ -101,7 +101,7 @@ public async Task CreateListUpdateDelete()
Assert.True(Uri.TryCreate(genrateSsoResponse.Value, UriKind.Absolute, out uri));
// generate token for user
- var userTokenParameters = new UserTokenParameters(KeyType.Primary, DateTime.UtcNow.AddDays(30));
+ var userTokenParameters = new UserTokenParameters(KeyType.Primary, DateTime.UtcNow.AddDays(10));
var genrateTokenResponse = testBase.client.User.GetSharedAccessToken(
testBase.rgName,
testBase.serviceName,
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/SwaggerTest.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/SwaggerTest.json
index a798a44172b6f..4a8ea49013f3b 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/SwaggerTest.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/SwaggerTest.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "ea7a8560-0e19-452d-9bcf-6cdd79ab0c2b"
+ "021ee96d-c21e-4912-987b-919f3d7dff2f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:37:47 GMT"
+ "Fri, 09 Mar 2018 19:37:48 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9b3857d5-4c3d-4858-ba12-861162bd8b92",
- "015d9485-b682-424b-b799-0b8d9f5f26d7"
+ "54bf2fe1-7bed-4bc7-8d0f-a3b101cfd8c0",
+ "6017f0ff-1aec-45a1-95ba-9ce87ee8fd9d"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "115c9d3d-8700-45d4-85c0-74167bb0856e"
+ "975158ea-8ed8-49be-acc2-8c85225e0278"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003748Z:115c9d3d-8700-45d4-85c0-74167bb0856e"
+ "WESTUS2:20180309T193748Z:975158ea-8ed8-49be-acc2-8c85225e0278"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89c1a535-04ee-46f5-8c5a-e21a7e3bbe78"
+ "99493f8a-ff7b-41a0-b795-80a0e9d97ab7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:37:47 GMT"
+ "Fri, 09 Mar 2018 19:37:48 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,23 +124,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "999cc693-3c15-4199-be6e-235e59680240"
+ "7f788d2f-39ac-4d81-b62f-087208e754b8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "5f6f9853-8215-4750-bc13-c5af9c684294"
+ "97d5a057-d72b-443c-91f8-add472ea4d61"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003748Z:5f6f9853-8215-4750-bc13-c5af9c684294"
+ "WESTUS2:20180309T193748Z:97d5a057-d72b-443c-91f8-add472ea4d61"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1899?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDE4OTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7106?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcxMDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"contentValue\": \"{\\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 \"contentFormat\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
@@ -148,17 +154,17 @@
"18238"
],
"x-ms-client-request-id": [
- "9d1aa877-8569-444d-82d8-f79add2ffdd9"
+ "77a84d44-0671-4657-aff0-8df0d21d0062"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1899\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1899\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7106\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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}",
"ResponseHeaders": {
"Content-Length": [
"844"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:37:48 GMT"
+ "Fri, 09 Mar 2018 19:37:49 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANIA=\""
+ "\"AAAAAAAAOD8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,38 +194,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a10f6a7-fdfb-4c9e-b4de-1c0151cc3abe"
+ "2347a06c-fbc1-46e1-b8c0-a0713c18eb21"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "6686461a-6347-4ab5-9087-33fa93c99c1c"
+ "93a7e048-7537-4163-812b-f87071a301a8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003749Z:6686461a-6347-4ab5-9087-33fa93c99c1c"
+ "WESTUS2:20180309T193749Z:93a7e048-7537-4163-812b-f87071a301a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1899?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDE4OTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7106?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcxMDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92d2d836-1e65-4023-b6d1-caf5fed1cdc8"
+ "671ff28a-575b-4431-8c97-5c75839eb167"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1899\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid1899\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7106\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid7106\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:37:49 GMT"
+ "Fri, 09 Mar 2018 19:37:49 GMT"
],
"Pragma": [
"no-cache"
@@ -240,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANIA=\""
+ "\"AAAAAAAAOD8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,41 +261,44 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0feea9fd-a05d-4c9a-a31e-b9508963bfc6"
+ "b7381ccd-355a-4739-8f82-c7d30539d4a9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "43ffc04e-010f-4914-82e9-3147f1e35c75"
+ "f3c9f002-0aee-4a58-b01c-e5898a283fcc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003749Z:43ffc04e-010f-4914-82e9-3147f1e35c75"
+ "WESTUS2:20180309T193749Z:f3c9f002-0aee-4a58-b01c-e5898a283fcc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1899?format=swagger-link&export=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDE4OTk/Zm9ybWF0PXN3YWdnZXItbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7106?format=swagger-link&export=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcxMDY/Zm9ybWF0PXN3YWdnZXItbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff751889-dd69-4808-b475-e1a2701825d8"
+ "a55e030c-9333-4fa0-9aab-2f61e97444a2"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=9UUfDaEVL9ilPioHVB8U5vDSglYU4VhiiExXse%2FtHrY%3D&se=2018-02-20T00:42:51Z&sp=r\"\r\n}",
+ "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Swagger Petstore Extensive.json?sv=2015-07-08&sr=b&sig=p5w6Pm21q%2Fmu5x2c543SRc8NEWL9JBvjpJHHM%2BXImXk%3D&se=2018-03-09T19:42:50Z&sp=r\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "212"
+ "214"
],
"Content-Type": [
"application/vnd.swagger.link+json; charset=utf-8"
@@ -298,13 +310,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:37:49 GMT"
+ "Fri, 09 Mar 2018 19:37:50 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANIA=\""
+ "\"AAAAAAAAOD8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,28 +325,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b9882ace-a19e-445b-bd13-c84e9e8b50fa"
+ "fbc52188-4080-4892-861d-1efd503da94c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "19a91138-24c5-492d-a6fe-247065c9bd4d"
+ "9f203676-00a5-4dad-ad7d-aa2e21546745"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003749Z:19a91138-24c5-492d-a6fe-247065c9bd4d"
+ "WESTUS2:20180309T193750Z:9f203676-00a5-4dad-ad7d-aa2e21546745"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid1899?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDE4OTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid7106?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDcxMDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a441e5f0-a7d0-4e73-af27-9bb6c72ab39d"
+ "76a336ec-80fd-4372-a34b-4f2c5e448976"
],
"If-Match": [
"*"
@@ -344,7 +359,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -359,7 +374,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:37:49 GMT"
+ "Fri, 09 Mar 2018 19:37:50 GMT"
],
"Pragma": [
"no-cache"
@@ -371,16 +386,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea33cf11-0f2d-4cae-8c35-ecb890c72b84"
+ "c7c0b94e-299b-4c3d-ae6e-8f7f099d7472"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "b014b13d-1c3c-43fa-8ecf-66ae34d17310"
+ "3ff82db9-473c-4930-9e9d-c968e6852d82"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003750Z:b014b13d-1c3c-43fa-8ecf-66ae34d17310"
+ "WESTUS2:20180309T193750Z:3ff82db9-473c-4930-9e9d-c968e6852d82"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -388,7 +406,7 @@
],
"Names": {
"SwaggerTest": [
- "aid1899"
+ "aid7106"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WadlTest.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WadlTest.json
index 77272ba6da43e..5bca58dec6205 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WadlTest.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WadlTest.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "2b268d10-4464-499d-b831-5c4ee05f267f"
+ "ac772eab-424d-4eac-b3a6-67718180ca21"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:38:12 GMT"
+ "Fri, 09 Mar 2018 19:38:16 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f8971a17-a702-47f1-9630-2dc9a40a4421",
- "e0e82f5e-bc68-465d-9f70-2b12952156e2"
+ "6a8c6642-ba09-4362-9617-01ba331a2b80",
+ "d2e3d9ad-47e5-475f-9a9f-3647de97f766"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "79c0c235-1c96-4253-849d-c7e5cfdb1055"
+ "e578fc79-271e-4609-8f3a-b73c183e2e85"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003813Z:79c0c235-1c96-4253-849d-c7e5cfdb1055"
+ "WESTUS2:20180309T193816Z:e578fc79-271e-4609-8f3a-b73c183e2e85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77421653-6154-44ae-84d9-33e2ea896533"
+ "ca00cb5f-f649-4e5a-bca5-2760d9418c53"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:38:12 GMT"
+ "Fri, 09 Mar 2018 19:38:16 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,23 +124,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "67a09437-417d-4b50-b861-a1db1bab24a6"
+ "234da533-d61e-4f10-bc8f-f8f6e6ddcb3b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "24623625-365c-4ccf-addf-68e25635d1db"
+ "9f2d9cbd-7944-4b33-808d-395d1aae30e9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003813Z:24623625-365c-4ccf-addf-68e25635d1db"
+ "WESTUS2:20180309T193816Z:9f2d9cbd-7944-4b33-808d-395d1aae30e9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3609?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDM2MDk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3104?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDMxMDQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"yahooWadl\",\r\n \"contentValue\": \"\\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 \"contentFormat\": \"wadl-xml\"\r\n }\r\n}",
"RequestHeaders": {
@@ -148,17 +154,17 @@
"4325"
],
"x-ms-client-request-id": [
- "0f5e1872-c757-4c61-9594-93a36ef79420"
+ "176b0fce-677a-4fce-af5c-60b563a00667"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3609\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid3609\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3104\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid3104\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\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}",
"ResponseHeaders": {
"Content-Length": [
"762"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:38:13 GMT"
+ "Fri, 09 Mar 2018 19:38:17 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANIs=\""
+ "\"AAAAAAAAOEo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,38 +194,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8097d5c6-eb44-4dc9-8525-29172e8271a7"
+ "aaec7e9b-fba7-4350-9016-6f4bf21dbfc4"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "22fa4783-6d0b-454e-b493-a97ec80b6283"
+ "acd71f15-cd83-419a-8fef-b81601bccb2b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003814Z:22fa4783-6d0b-454e-b493-a97ec80b6283"
+ "WESTUS2:20180309T193817Z:acd71f15-cd83-419a-8fef-b81601bccb2b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3609?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDM2MDk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3104?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDMxMDQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fc19713-8e43-43b6-95ec-2ed111de86a0"
+ "b4029cd5-ade1-41d1-815a-72042b8f4067"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3609\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid3609\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3104\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid3104\",\r\n \"properties\": {\r\n \"displayName\": \"Yahoo News Search\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"Yahoo News Search API\",\r\n \"serviceUrl\": \"http://api.search.yahoo.com/NewsSearchService/V1/\",\r\n \"path\": \"yahooWadl\",\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}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:38:13 GMT"
+ "Fri, 09 Mar 2018 19:38:17 GMT"
],
"Pragma": [
"no-cache"
@@ -240,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANIs=\""
+ "\"AAAAAAAAOEo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,41 +261,44 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e8844f81-3b01-49c7-a94d-873add8ba489"
+ "54e2015a-2df6-4135-b29b-f463ae403ea3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "30e7099e-5a96-4147-a04a-bc4e04c0078c"
+ "c5415adb-a7a3-4ded-b8bc-507ba13c8536"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003814Z:30e7099e-5a96-4147-a04a-bc4e04c0078c"
+ "WESTUS2:20180309T193817Z:c5415adb-a7a3-4ded-b8bc-507ba13c8536"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3609?format=wadl-link&export=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDM2MDk/Zm9ybWF0PXdhZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3104?format=wadl-link&export=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDMxMDQ/Zm9ybWF0PXdhZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c072ce3-ccb8-46f8-8ffb-0213806cfdf4"
+ "a97cd2e7-5cc1-41d0-8f36-8518295764e3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Yahoo News Search.xml?sv=2015-07-08&sr=b&sig=ph65JDy5bGXkfhwkPp8IDnyyKRgdqGJlAzxXUDGt1p8%3D&se=2018-02-20T00:43:16Z&sp=r\"\r\n}",
+ "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Yahoo News Search.xml?sv=2015-07-08&sr=b&sig=kTjjY%2FPet82DCluSzHUBy9fF0r7xUZMVHLXGho07ePU%3D&se=2018-03-09T19:43:17Z&sp=r\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "200"
+ "202"
],
"Content-Type": [
"application/vnd.sun.wadl.link+json; charset=utf-8"
@@ -298,13 +310,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:38:14 GMT"
+ "Fri, 09 Mar 2018 19:38:17 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANIs=\""
+ "\"AAAAAAAAOEo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,28 +325,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b2c025a-a416-4d90-987b-9ecf45fa1629"
+ "0e98d282-c5d7-4700-85b7-eef1add96147"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "6112cd87-bfdf-4ee2-80ff-9796a1d5e8a2"
+ "12c36a0c-d471-41f5-822e-64452e59cf62"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003814Z:6112cd87-bfdf-4ee2-80ff-9796a1d5e8a2"
+ "WESTUS2:20180309T193818Z:12c36a0c-d471-41f5-822e-64452e59cf62"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3609?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDM2MDk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid3104?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDMxMDQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a01501e-3c05-4fab-9558-2b3eacacbd49"
+ "6b502e4d-68e6-470e-99ac-4539da6e3d8c"
],
"If-Match": [
"*"
@@ -344,7 +359,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -359,7 +374,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:38:14 GMT"
+ "Fri, 09 Mar 2018 19:38:18 GMT"
],
"Pragma": [
"no-cache"
@@ -371,16 +386,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c438c5c5-f51a-4fa8-8aa0-797ddfc23e0e"
+ "1cd6fa04-8aed-44ae-afad-f27d3c92df23"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "52ff19e5-5253-400b-9824-ed39803322e4"
+ "b0397c33-6988-4a37-b8e2-f5d8f5dd3544"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T003815Z:52ff19e5-5253-400b-9824-ed39803322e4"
+ "WESTUS2:20180309T193818Z:b0397c33-6988-4a37-b8e2-f5d8f5dd3544"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -388,7 +406,7 @@
],
"Names": {
"WadlTest": [
- "aid3609"
+ "aid3104"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WsdlTest.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WsdlTest.json
index 6ecb1e7d7375a..a9a29ddc07278 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WsdlTest.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiExportImportTests/WsdlTest.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "05750d91-b546-4463-a854-041500502b2f"
+ "3e9647f8-6b37-4fa2-976c-7f80a97209dc"
],
"accept-language": [
"en-US"
@@ -23,7 +23,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 01:40:35 GMT"
+ "Fri, 09 Mar 2018 19:38:45 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d9a0fd97-cc6a-4bbf-88a0-9d86968fb2d7",
- "5acf95b4-20fa-476a-b5d7-009b00328857"
+ "11ce87f9-e584-4c19-bf0d-5f49f961a4a0",
+ "a519e44e-b5f5-4caa-8aa5-863ad88dd2d4"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1192"
],
"x-ms-correlation-request-id": [
- "7e86fd10-0e6a-48c4-bbfb-b1f4e79366e5"
+ "db1cfa09-029a-40e8-bfef-8d669095d50d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T014035Z:7e86fd10-0e6a-48c4-bbfb-b1f4e79366e5"
+ "WESTUS2:20180309T193845Z:db1cfa09-029a-40e8-bfef-8d669095d50d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60b79726-3ebf-4741-8237-1072cc3e0d15"
+ "4c283203-699b-48e4-a775-bff7727f8af2"
],
"accept-language": [
"en-US"
@@ -91,7 +91,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 01:40:35 GMT"
+ "Fri, 09 Mar 2018 19:38:45 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a5a1ea48-5ef7-4358-a3e9-f06b036609cd"
+ "bd07fb9e-55c8-4a99-8ace-40a1d80493e1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14990"
],
"x-ms-correlation-request-id": [
- "8eb8d849-07aa-4ea6-af8b-2cd56d9d6ebc"
+ "4cb6af6f-88cb-44a5-a5e2-63c2d6305b97"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T014035Z:8eb8d849-07aa-4ea6-af8b-2cd56d9d6ebc"
+ "WESTUS2:20180309T193845Z:4cb6af6f-88cb-44a5-a5e2-63c2d6305b97"
],
"X-Content-Type-Options": [
"nosniff"
@@ -142,8 +142,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid2008?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDIwMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8409?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg0MDk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"weatherapi\",\r\n \"contentValue\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\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 \"contentFormat\": \"wsdl\",\r\n \"wsdlSelector\": {\r\n \"wsdlServiceName\": \"Weather\",\r\n \"wsdlEndpointName\": \"WeatherSoap\"\r\n },\r\n \"apiType\": \"soap\"\r\n }\r\n}",
"RequestHeaders": {
@@ -154,7 +154,7 @@
"18972"
],
"x-ms-client-request-id": [
- "6c756b88-ff70-4639-8dd3-545c3faa6190"
+ "c5018c33-c83b-4e0e-99c8-9efb8f20f861"
],
"accept-language": [
"en-US"
@@ -164,7 +164,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid2008\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid2008\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8409\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8409\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\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}",
"ResponseHeaders": {
"Content-Length": [
"749"
@@ -179,13 +179,13 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 01:40:56 GMT"
+ "Fri, 09 Mar 2018 19:38:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN4g=\""
+ "\"AAAAAAAAOE4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -194,16 +194,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "033a69d8-74d7-4150-aae1-ca667835df3b"
+ "f29bac6a-4c7b-4336-a25c-7c8612c0d99a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1191"
],
"x-ms-correlation-request-id": [
- "94d34acc-6119-4320-933d-5028887bfbee"
+ "2f861b76-25d6-42a4-b3b0-bffa114abe80"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T014057Z:94d34acc-6119-4320-933d-5028887bfbee"
+ "WESTUS2:20180309T193846Z:2f861b76-25d6-42a4-b3b0-bffa114abe80"
],
"X-Content-Type-Options": [
"nosniff"
@@ -212,13 +212,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid2008?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDIwMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8409?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg0MDk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b10d761d-0a19-4745-b7d3-aca5db5b711a"
+ "adcb8f5b-34df-4ca5-aad8-bf6c616cba3c"
],
"accept-language": [
"en-US"
@@ -228,7 +228,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid2008\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid2008\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8409\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"aid8409\",\r\n \"properties\": {\r\n \"displayName\": \"Weather\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://wsf.cdyne.com/WeatherWS/Weather.asmx\",\r\n \"path\": \"weatherapi\",\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}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -240,7 +240,7 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 01:41:25 GMT"
+ "Fri, 09 Mar 2018 19:38:46 GMT"
],
"Pragma": [
"no-cache"
@@ -249,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN4g=\""
+ "\"AAAAAAAAOE4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -261,16 +261,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a7366b8-65d5-437f-9db4-2b4fa8789217"
+ "21722848-8a00-4882-a1ec-4251382a5dfb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14989"
],
"x-ms-correlation-request-id": [
- "2aef1c86-c281-47c2-8965-22e801be2f48"
+ "1e0dbe91-304d-4e7a-90c0-7a28e155488d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T014126Z:2aef1c86-c281-47c2-8965-22e801be2f48"
+ "WESTUS2:20180309T193846Z:1e0dbe91-304d-4e7a-90c0-7a28e155488d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -279,13 +279,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid2008?format=wsdl-link&export=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDIwMDg/Zm9ybWF0PXdzZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8409?format=wsdl-link&export=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg0MDk/Zm9ybWF0PXdzZGwtbGluayZleHBvcnQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cf834395-93aa-45c8-8692-b02e4cebb6aa"
+ "563fdc25-2776-4a5c-9f65-c9549851c9c9"
],
"accept-language": [
"en-US"
@@ -295,10 +295,10 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Weather.xsd?sv=2015-07-08&sr=b&sig=ebMm4fc7jwaMMSalGFrRb6jqcmaiWCHX8l%2FI0KCJxPo%3D&se=2018-03-07T01:46:46Z&sp=r\"\r\n}",
+ "ResponseBody": "{\r\n \"link\": \"https://apimgmtstkjpszvoe48cckrb.blob.core.windows.net/api-export/Weather.xsd?sv=2015-07-08&sr=b&sig=WuP5C3UmZkP1hjJD%2BaXjz1eJoqFpTjR%2F80Ht56riZjs%3D&se=2018-03-09T19:43:46Z&sp=r\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "192"
+ "194"
],
"Content-Type": [
"application/vnd.ms.wsdl.link+xml; charset=utf-8"
@@ -310,13 +310,13 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 01:41:47 GMT"
+ "Fri, 09 Mar 2018 19:38:47 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN4g=\""
+ "\"AAAAAAAAOE4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -325,16 +325,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70d264f1-038e-44ce-90c2-f7e00ef14ad3"
+ "7aa3203b-6f85-4a70-aa16-df90d572f1ac"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14988"
],
"x-ms-correlation-request-id": [
- "0b68fbff-45f2-43af-af7e-dd1348d52a7b"
+ "7496eae2-2b8a-4f24-80fd-989743537978"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T014148Z:0b68fbff-45f2-43af-af7e-dd1348d52a7b"
+ "WESTUS2:20180309T193847Z:7496eae2-2b8a-4f24-80fd-989743537978"
],
"X-Content-Type-Options": [
"nosniff"
@@ -343,13 +343,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid2008?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDIwMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/aid8409?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FpZDg0MDk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f02bd8c-a47b-43b9-ab28-4d298bd0bf7c"
+ "6f8f6df3-fdad-4d31-8177-2f20d1c54e6c"
],
"If-Match": [
"*"
@@ -374,7 +374,7 @@
"no-cache"
],
"Date": [
- "Wed, 07 Mar 2018 01:42:36 GMT"
+ "Fri, 09 Mar 2018 19:38:47 GMT"
],
"Pragma": [
"no-cache"
@@ -386,16 +386,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "344ea8de-eefb-413c-8e23-1b0ecfbcebdf"
+ "b373b0e8-0189-42a4-bf81-595b4e24cf3c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1190"
],
"x-ms-correlation-request-id": [
- "a67fff9a-7138-4ba3-89ab-e27da20b46f0"
+ "7c5e680f-e4b2-4772-bf6d-4d234c56e9bf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180307T014236Z:a67fff9a-7138-4ba3-89ab-e27da20b46f0"
+ "WESTUS2:20180309T193847Z:7c5e680f-e4b2-4772-bf6d-4d234c56e9bf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -406,7 +406,7 @@
],
"Names": {
"WsdlTest": [
- "aid2008"
+ "aid8409"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiOperationTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiOperationTests/CreateListUpdateDelete.json
index 429fdc9bcd7b6..04eb4bd6fb770 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiOperationTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiOperationTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "0168430c-39b0-41df-874c-5070595569fc"
+ "b5cdd133-80e7-459a-8b3c-b7aceaf060b8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:23 GMT"
+ "Fri, 09 Mar 2018 19:34:53 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5f65171e-8673-41a0-a22d-f778aa85a1b1",
- "2e045f02-29b3-469f-932d-413eeec85eef"
+ "4471710c-a635-4b2f-83cd-6f893e249c94",
+ "09dbbbf6-8b6b-4ed0-a02c-78ad51ae2456"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "df0e9179-47f2-4306-9a5c-491fc6ca6b78"
+ "63fc51fc-432f-4edb-99ae-00ff12cd27d6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235523Z:df0e9179-47f2-4306-9a5c-491fc6ca6b78"
+ "WESTUS2:20180309T193454Z:63fc51fc-432f-4edb-99ae-00ff12cd27d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb06778c-c3be-455d-971e-cdcfe072cfa5"
+ "da24f1c8-c95e-4463-a1f5-94da2ca4fd4d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:23 GMT"
+ "Fri, 09 Mar 2018 19:34:54 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f47dcc4b-1d81-4732-afba-4c0e01c3cef0"
+ "7db7291d-8304-4ed1-89c3-fd42ffeb9418"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14999"
],
"x-ms-correlation-request-id": [
- "e6fa0c82-f34e-4fc5-a73f-6c208a8febbe"
+ "f43d1ac2-1e42-400e-afb8-0081495361e5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235523Z:e6fa0c82-f34e-4fc5-a73f-6c208a8febbe"
+ "WESTUS2:20180309T193454Z:f43d1ac2-1e42-400e-afb8-0081495361e5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd375233-aa0d-4968-aeca-0d43360d53e3"
+ "3ff19649-55a3-42d4-bbe3-6b96980bc744"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"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 \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:23 GMT"
+ "Fri, 09 Mar 2018 19:34:54 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f056d11-3184-4cb5-903b-71a1978e9d26"
+ "77d18c49-11f5-44f4-8644-937c4127c5c6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14998"
],
"x-ms-correlation-request-id": [
- "f8c79a92-0884-4824-820c-e2f9537b61b1"
+ "46363486-3be5-4fb0-83bb-29f0f8bd39e3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235523Z:f8c79a92-0884-4824-820c-e2f9537b61b1"
+ "WESTUS2:20180309T193454Z:46363486-3be5-4fb0-83bb-29f0f8bd39e3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf5a5256-c6dc-470f-b2a9-d200a0dd8e2e"
+ "e9ab00d7-4717-436e-a0c2-939d3b864d31"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:23 GMT"
+ "Fri, 09 Mar 2018 19:34:54 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a2133d74-7c82-4d59-91b3-1c77acd5a0c6"
+ "46167544-124a-49fb-816a-c57151ba171d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14997"
],
"x-ms-correlation-request-id": [
- "b6fad7e4-61d7-4186-a935-cba57f5835a7"
+ "14d9f597-d5d5-44e0-b3a2-0621ff085134"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235524Z:b6fad7e4-61d7-4186-a935-cba57f5835a7"
+ "WESTUS2:20180309T193454Z:14d9f597-d5d5-44e0-b3a2-0621ff085134"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "851b8586-20da-4cf9-92a6-01ebef03592a"
+ "53ecacf5-aef2-451a-9c60-50f0ce81ac65"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?%24top=3&api-version=2018-01-01&%24skip=3\"\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:24 GMT"
+ "Fri, 09 Mar 2018 19:34:54 GMT"
],
"Pragma": [
"no-cache"
@@ -304,16 +316,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a4ef233-3e57-4ea8-8c41-6331130fd068"
+ "e8ebdc78-0f9d-4f16-98e6-c0025f744347"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14996"
],
"x-ms-correlation-request-id": [
- "c20f1f4a-0ab9-4e1d-b8a1-0cb679c42e42"
+ "b51286fc-94e1-40b2-8fb2-053c5739093a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235524Z:c20f1f4a-0ab9-4e1d-b8a1-0cb679c42e42"
+ "WESTUS2:20180309T193455Z:b51286fc-94e1-40b2-8fb2-053c5739093a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -325,14 +340,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a98cc8f7-e3d3-4076-81d4-6a7d9704bc46"
+ "a24f18f9-83e3-42ae-aa87-23443db86639"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -347,7 +362,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:24 GMT"
+ "Fri, 09 Mar 2018 19:34:55 GMT"
],
"Pragma": [
"no-cache"
@@ -365,16 +380,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10d8279f-9783-41f4-94ed-4ea7f03adcaf"
+ "3801d017-5662-4bc7-9b6c-670adbaf7086"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14995"
],
"x-ms-correlation-request-id": [
- "d78b718c-d718-4841-8e91-8a955f5e8bc6"
+ "fe20cf33-9f31-4521-a52c-71555b1728a8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235524Z:d78b718c-d718-4841-8e91-8a955f5e8bc6"
+ "WESTUS2:20180309T193455Z:fe20cf33-9f31-4521-a52c-71555b1728a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -386,14 +404,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ee255ae-d3da-47ab-a36c-717c76d977d0"
+ "418519d3-4fe9-4951-81ce-a531cd0de3f8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/retrieve-header-only\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"retrieve-header-only\",\r\n \"properties\": {\r\n \"displayName\": \"Retrieve header only\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/resource\",\r\n \"templateParameters\": [],\r\n \"description\": \"The HEAD operation returns only headers. In this demonstration a policy is used to set additional headers when the response is returned and to enable JSONP.\",\r\n \"request\": {\r\n \"description\": null,\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": []\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
@@ -408,7 +426,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:24 GMT"
+ "Fri, 09 Mar 2018 19:34:55 GMT"
],
"Pragma": [
"no-cache"
@@ -429,47 +447,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c3468a30-f02c-48d9-ba39-fd6625cbb159"
+ "1a6a1364-0d1a-45bc-9337-145e358db2c0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14994"
],
"x-ms-correlation-request-id": [
- "fa923219-4674-4eb3-a838-45728efe80f4"
+ "7ab8976d-2a2a-46a9-95b8-0b72c67011d9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235524Z:fa923219-4674-4eb3-a838-45728efe80f4"
+ "WESTUS2:20180309T193455Z:7ab8976d-2a2a-46a9-95b8-0b72c67011d9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"operationDescription897\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4950\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4350\",\r\n \"description\": \"newOperationRequestParamDescr1620\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue9009\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue9009\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName4177\",\r\n \"description\": \"newOperationRequestHeaderParamDescr5816\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType8701\",\r\n \"sample\": \"newOperationRequestRepresentationSample8643\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription4452\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType448\",\r\n \"sample\": \"newOperationResponseRepresentationSample4044\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operationName1621\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"operationDescription5483\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4729\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4180\",\r\n \"description\": \"newOperationRequestParamDescr5877\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue568\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue568\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7562\",\r\n \"description\": \"newOperationRequestHeaderParamDescr2524\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4625\",\r\n \"sample\": \"newOperationRequestRepresentationSample4307\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7543\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType686\",\r\n \"sample\": \"newOperationResponseRepresentationSample264\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operationName5167\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1743"
+ "1741"
],
"x-ms-client-request-id": [
- "4c2aca4f-92fb-461f-bef8-e059ada1d3da"
+ "1b942273-e1d9-4147-a9c4-74c4542d68a0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid2218\",\r\n \"properties\": {\r\n \"displayName\": \"operationName1621\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription897\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4950\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4350\",\r\n \"description\": \"newOperationRequestParamDescr1620\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue9009\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue9009\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName4177\",\r\n \"description\": \"newOperationRequestHeaderParamDescr5816\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType8701\",\r\n \"sample\": \"newOperationRequestRepresentationSample8643\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription4452\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType448\",\r\n \"sample\": \"newOperationResponseRepresentationSample4044\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid1673\",\r\n \"properties\": {\r\n \"displayName\": \"operationName5167\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription5483\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4729\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4180\",\r\n \"description\": \"newOperationRequestParamDescr5877\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue568\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue568\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7562\",\r\n \"description\": \"newOperationRequestHeaderParamDescr2524\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4625\",\r\n \"sample\": \"newOperationRequestRepresentationSample4307\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7543\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType686\",\r\n \"sample\": \"newOperationResponseRepresentationSample264\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "2112"
+ "2110"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -481,13 +502,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:26 GMT"
+ "Fri, 09 Mar 2018 19:34:56 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM/w=\""
+ "\"AAAAAAAAOC4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -496,38 +517,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2bd4670c-6a2d-4730-acc4-d201296e5216"
+ "01a59700-1a72-4f3c-bb38-3af357c12362"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-correlation-request-id": [
- "11b976f4-a840-493c-8a58-44fd0891f02f"
+ "5019f63e-a8e9-47b4-9a43-f9fe29936fd5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235526Z:11b976f4-a840-493c-8a58-44fd0891f02f"
+ "WESTUS2:20180309T193456Z:5019f63e-a8e9-47b4-9a43-f9fe29936fd5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8a90d2da-e98f-4d4e-9a94-e57469ba424a"
+ "943e6793-5425-42f2-bf1e-3209dc6f5edb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid2218\",\r\n \"properties\": {\r\n \"displayName\": \"operationName1621\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription897\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4950\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4350\",\r\n \"description\": \"newOperationRequestParamDescr1620\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue9009\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue9009\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName4177\",\r\n \"description\": \"newOperationRequestHeaderParamDescr5816\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType8701\",\r\n \"sample\": \"newOperationRequestRepresentationSample8643\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription4452\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType448\",\r\n \"sample\": \"newOperationResponseRepresentationSample4044\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid1673\",\r\n \"properties\": {\r\n \"displayName\": \"operationName5167\",\r\n \"method\": \"PATCH\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"operationDescription5483\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4729\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4180\",\r\n \"description\": \"newOperationRequestParamDescr5877\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue568\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue568\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7562\",\r\n \"description\": \"newOperationRequestHeaderParamDescr2524\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4625\",\r\n \"sample\": \"newOperationRequestRepresentationSample4307\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7543\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType686\",\r\n \"sample\": \"newOperationResponseRepresentationSample264\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -539,7 +563,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:26 GMT"
+ "Fri, 09 Mar 2018 19:34:56 GMT"
],
"Pragma": [
"no-cache"
@@ -548,7 +572,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM/w=\""
+ "\"AAAAAAAAOC4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -560,38 +584,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34adad48-4f27-4452-9e0d-d2bf2e5cc2a2"
+ "a71aad02-c775-433f-8966-f09f9853196f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14993"
],
"x-ms-correlation-request-id": [
- "5050e60c-5583-49f9-95f5-96baeea57579"
+ "eaac3b97-ba1d-45e4-b74e-ab793e7b98ea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235526Z:5050e60c-5583-49f9-95f5-96baeea57579"
+ "WESTUS2:20180309T193456Z:eaac3b97-ba1d-45e4-b74e-ab793e7b98ea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffb412aa-e56d-4d4a-8ca9-57ba6233d628"
+ "b75518d7-6200-4b4e-95b3-162f4b72bd67"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid2218\",\r\n \"properties\": {\r\n \"displayName\": \"patchedName6543\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"patchedDescription2379\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4950\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4350\",\r\n \"description\": \"newOperationRequestParamDescr1620\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue9009\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue9009\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName4177\",\r\n \"description\": \"newOperationRequestHeaderParamDescr5816\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue9265\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType8701\",\r\n \"sample\": \"newOperationRequestRepresentationSample8643\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription4452\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType448\",\r\n \"sample\": \"newOperationResponseRepresentationSample4044\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"operationid1673\",\r\n \"properties\": {\r\n \"displayName\": \"patchedName5728\",\r\n \"method\": \"HEAD\",\r\n \"urlTemplate\": \"/newresource\",\r\n \"templateParameters\": [],\r\n \"description\": \"patchedDescription8908\",\r\n \"request\": {\r\n \"description\": \"operationRequestDescription4729\",\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"newOperationRequestParmName4180\",\r\n \"description\": \"newOperationRequestParamDescr5877\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestParamDefaultValue568\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestParamDefaultValue568\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"newOperationRequestHeaderParmName7562\",\r\n \"description\": \"newOperationRequestHeaderParamDescr2524\",\r\n \"type\": \"string\",\r\n \"defaultValue\": \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"required\": true,\r\n \"values\": [\r\n \"newOperationRequestHeaderParamDefaultValue3795\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationRequestRepresentationContentType4625\",\r\n \"sample\": \"newOperationRequestRepresentationSample4307\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 1980785443,\r\n \"description\": \"newOperationResponseDescription7543\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"newOperationResponseRepresentationContentType686\",\r\n \"sample\": \"newOperationResponseRepresentationSample264\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -603,7 +630,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:27 GMT"
+ "Fri, 09 Mar 2018 19:34:57 GMT"
],
"Pragma": [
"no-cache"
@@ -612,7 +639,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM/0=\""
+ "\"AAAAAAAAOC8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -624,35 +651,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4c9dbfb0-d2e7-410e-b54d-da9cdbc268c7"
+ "ff0bb8f2-40ab-48ec-b45f-72cc40b13a8d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14991"
],
"x-ms-correlation-request-id": [
- "ee5b34aa-b7a2-4e64-9eb4-52bf2208f431"
+ "7395c8d1-f95e-46fd-8952-d40639502eae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235527Z:ee5b34aa-b7a2-4e64-9eb4-52bf2208f431"
+ "WESTUS2:20180309T193457Z:7395c8d1-f95e-46fd-8952-d40639502eae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01f3bdc9-6da7-42cf-9ff5-2063551bec47"
+ "75469b1c-2846-45bb-9743-d7d5671d6782"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Operation not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -670,7 +700,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:28 GMT"
+ "Fri, 09 Mar 2018 19:34:58 GMT"
],
"Pragma": [
"no-cache"
@@ -682,35 +712,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e538b0a9-035d-4a52-bee4-5050f3d77e7c"
+ "1d9e70c6-f13b-485b-a15c-4b8228053176"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14989"
],
"x-ms-correlation-request-id": [
- "01980938-843b-43a2-a323-6a5c6b97a738"
+ "b33a044a-f96b-4755-8cec-1a1cd438915f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235528Z:01980938-843b-43a2-a323-6a5c6b97a738"
+ "WESTUS2:20180309T193458Z:b33a044a-f96b-4755-8cec-1a1cd438915f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8a81b89-0cfb-4cd0-9df5-c2cafae70d46"
+ "3bd32a4b-0311-4547-97d2-f3bd6eb657a5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -725,13 +758,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:26 GMT"
+ "Fri, 09 Mar 2018 19:34:56 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM/w=\""
+ "\"AAAAAAAAOC4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -740,35 +773,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7516d5b4-585b-49b3-a611-762b58ba005e"
+ "ae43c92c-efd0-4a4b-a264-9a6a2b1c1774"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14992"
],
"x-ms-correlation-request-id": [
- "413fdfbb-f4da-423b-ab9b-1d1dfa26418d"
+ "72cc4979-d1b7-4cc3-b24b-3b12627d7f3d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235526Z:413fdfbb-f4da-423b-ab9b-1d1dfa26418d"
+ "WESTUS2:20180309T193456Z:72cc4979-d1b7-4cc3-b24b-3b12627d7f3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7732616-4446-48cc-bf11-45dcea450ab0"
+ "c87a5942-21b3-40ea-9cbb-f833b9dd6cfa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -783,13 +819,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:27 GMT"
+ "Fri, 09 Mar 2018 19:34:57 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM/0=\""
+ "\"AAAAAAAAOC8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -798,25 +834,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1439de0e-c870-4112-a617-763f9ae0e0e8"
+ "9bfa172e-8054-4cca-9c74-4441f4f2db6d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14990"
],
"x-ms-correlation-request-id": [
- "f85649d7-6b2c-4c3d-826c-4aaa2985fe25"
+ "d22cb7c3-0f08-4f1f-adc2-22ffda457cb9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235527Z:f85649d7-6b2c-4c3d-826c-4aaa2985fe25"
+ "WESTUS2:20180309T193457Z:d22cb7c3-0f08-4f1f-adc2-22ffda457cb9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription2379\",\r\n \"displayName\": \"patchedName6543\",\r\n \"method\": \"HEAD\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription8908\",\r\n \"displayName\": \"patchedName5728\",\r\n \"method\": \"HEAD\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -825,17 +864,17 @@
"135"
],
"x-ms-client-request-id": [
- "7f1fe440-4e1c-4629-aa6a-fe0e19d26545"
+ "d6ce8eb0-24b7-4944-843f-45e891f4c181"
],
"If-Match": [
- "\"AAAAAAAAM/w=\""
+ "\"AAAAAAAAOC4=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -847,7 +886,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:27 GMT"
+ "Fri, 09 Mar 2018 19:34:57 GMT"
],
"Pragma": [
"no-cache"
@@ -859,38 +898,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ae372e98-2057-44b3-8ea4-9d0571a8e576"
+ "e6ccd87b-a9a3-493c-9521-404a32cc62fa"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1197"
],
"x-ms-correlation-request-id": [
- "d2b75faa-4313-467c-813c-4a74dc7cdc93"
+ "493398d6-d613-449b-8ed1-33005117baee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235527Z:d2b75faa-4313-467c-813c-4a74dc7cdc93"
+ "WESTUS2:20180309T193457Z:493398d6-d613-449b-8ed1-33005117baee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f978afd-5bd7-47bc-ada4-294221da4f10"
+ "6b33b1a5-5c36-4bbb-ba9c-04eeee7f1f81"
],
"If-Match": [
- "\"AAAAAAAAM/0=\""
+ "\"AAAAAAAAOC8=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -905,7 +947,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:28 GMT"
+ "Fri, 09 Mar 2018 19:34:57 GMT"
],
"Pragma": [
"no-cache"
@@ -917,28 +959,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1cf66fd9-6a33-42c1-9c9c-923b67c79107"
+ "8acc3d2f-2d2b-462b-8c75-771e8f554756"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1196"
],
"x-ms-correlation-request-id": [
- "f5c85002-5b46-4796-959a-6347e6cef8cf"
+ "86a728fd-8ebc-4951-a22b-b88006ec48bc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235528Z:f5c85002-5b46-4796-959a-6347e6cef8cf"
+ "WESTUS2:20180309T193458Z:86a728fd-8ebc-4951-a22b-b88006ec48bc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQyMjE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/operationid1673?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvb3BlcmF0aW9uaWQxNjczP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22f15769-47ea-41bd-a088-945f77ff3f98"
+ "bb6fc7af-d49e-44b9-9779-4c0a65d8e3f9"
],
"If-Match": [
"*"
@@ -948,7 +993,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -960,7 +1005,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:28 GMT"
+ "Fri, 09 Mar 2018 19:34:58 GMT"
],
"Pragma": [
"no-cache"
@@ -972,16 +1017,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87a6712a-f011-4a79-8885-d0478f82ad51"
+ "53a6830e-1eea-42aa-8acc-98a65d7af989"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1195"
],
"x-ms-correlation-request-id": [
- "afd569e3-29a1-492a-9310-3c1c819bff3a"
+ "67c27dae-5bbf-4b7a-89c3-50a359089eed"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235528Z:afd569e3-29a1-492a-9310-3c1c819bff3a"
+ "WESTUS2:20180309T193458Z:67c27dae-5bbf-4b7a-89c3-50a359089eed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -989,23 +1037,23 @@
],
"Names": {
"CreateListUpdateDelete": [
- "operationid2218",
- "operationName1621",
- "operationDescription897",
- "operationRequestDescription4950",
- "newOperationRequestHeaderParmName4177",
- "newOperationRequestHeaderParamDescr5816",
- "newOperationRequestHeaderParamDefaultValue9265",
- "newOperationRequestParmName4350",
- "newOperationRequestParamDescr1620",
- "newOperationRequestParamDefaultValue9009",
- "newOperationRequestRepresentationContentType8701",
- "newOperationRequestRepresentationSample8643",
- "newOperationResponseDescription4452",
- "newOperationResponseRepresentationContentType448",
- "newOperationResponseRepresentationSample4044",
- "patchedName6543",
- "patchedDescription2379"
+ "operationid1673",
+ "operationName5167",
+ "operationDescription5483",
+ "operationRequestDescription4729",
+ "newOperationRequestHeaderParmName7562",
+ "newOperationRequestHeaderParamDescr2524",
+ "newOperationRequestHeaderParamDefaultValue3795",
+ "newOperationRequestParmName4180",
+ "newOperationRequestParamDescr5877",
+ "newOperationRequestParamDefaultValue568",
+ "newOperationRequestRepresentationContentType4625",
+ "newOperationRequestRepresentationSample4307",
+ "newOperationResponseDescription7543",
+ "newOperationResponseRepresentationContentType686",
+ "newOperationResponseRepresentationSample264",
+ "patchedName5728",
+ "patchedDescription8908"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiProductTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiProductTests/CreateListUpdateDelete.json
index 68640fabdc062..40b0d5eaa066a 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiProductTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiProductTests/CreateListUpdateDelete.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "00b86be4-4308-432f-9e01-9bcb48c7b1bc"
+ "b2d5f680-3cf0-4c01-b8a6-b0d8ddf4fac9"
],
"accept-language": [
"en-US"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:02 GMT"
+ "Fri, 09 Mar 2018 19:56:19 GMT"
],
"Pragma": [
"no-cache"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "298bdaad-4516-4995-bd71-d014aafdd44c",
- "e89dd310-01e0-4e48-b922-f6ada9ae447d"
+ "16aab084-2974-4a40-b5fc-0c492366c362",
+ "4196a74b-20a2-4b42-8487-5c465cce1e7f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "3cf47d83-a2d3-46e3-a408-a5eee697b122"
+ "189ab5af-12cf-466c-9eaa-794ac5c0a4c6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211303Z:3cf47d83-a2d3-46e3-a408-a5eee697b122"
+ "WESTUS2:20180309T195619Z:189ab5af-12cf-466c-9eaa-794ac5c0a4c6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "32bcf591-0e32-4219-b9bb-89c9456d97d8"
+ "56c8a95e-5e6a-4373-843e-c38c63eef456"
],
"accept-language": [
"en-US"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:03 GMT"
+ "Fri, 09 Mar 2018 19:56:19 GMT"
],
"Pragma": [
"no-cache"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7006df87-f7d3-411e-bb79-8f1eb694523b"
+ "34a04769-0a03-43ee-acbe-228424cacbde"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14992"
],
"x-ms-correlation-request-id": [
- "46184c45-12dd-4c66-b239-36d92b8e88df"
+ "60322f22-93f2-4192-aeec-027c9a349b3a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211303Z:46184c45-12dd-4c66-b239-36d92b8e88df"
+ "WESTUS2:20180309T195619Z:60322f22-93f2-4192-aeec-027c9a349b3a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40c94b86-46c6-48b9-9377-83ee3385ca61"
+ "97c88996-c411-49f0-a866-62945abbe116"
],
"accept-language": [
"en-US"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:03 GMT"
+ "Fri, 09 Mar 2018 19:56:19 GMT"
],
"Pragma": [
"no-cache"
@@ -188,16 +188,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d42889e5-ce78-40b3-9f87-9bf5c9d92527"
+ "63de3677-2eca-4260-9a76-7b19f0d40df4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14991"
],
"x-ms-correlation-request-id": [
- "46953f4f-7940-4001-bfa3-97f9b764d74e"
+ "72f711e7-5d0e-4b71-bc41-c5bc30a45b7a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211304Z:46953f4f-7940-4001-bfa3-97f9b764d74e"
+ "WESTUS2:20180309T195619Z:72f711e7-5d0e-4b71-bc41-c5bc30a45b7a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -212,7 +212,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b019b98-e325-4f15-8f59-958a4ed21593"
+ "edcc442d-bedd-403e-8335-6185263f91ad"
],
"accept-language": [
"en-US"
@@ -234,7 +234,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:03 GMT"
+ "Fri, 09 Mar 2018 19:56:19 GMT"
],
"Pragma": [
"no-cache"
@@ -252,16 +252,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "54f48179-d2d6-4bc5-8c5e-0096718a4bbe"
+ "142da5ca-30c7-40bf-b482-fd831beb1fff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14990"
],
"x-ms-correlation-request-id": [
- "af9e1c77-9573-4797-80e4-1299a2ef1194"
+ "e11674d3-5099-44ba-b376-2a1f357a0a6e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211304Z:af9e1c77-9573-4797-80e4-1299a2ef1194"
+ "WESTUS2:20180309T195619Z:e11674d3-5099-44ba-b376-2a1f357a0a6e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -276,7 +276,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ecad98d-fba0-4923-9896-dd9d873b1794"
+ "64e78dde-e2c8-4301-aac7-22819d8e20b0"
],
"accept-language": [
"en-US"
@@ -298,7 +298,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:03 GMT"
+ "Fri, 09 Mar 2018 19:56:19 GMT"
],
"Pragma": [
"no-cache"
@@ -316,16 +316,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5254d1f5-31d7-41f1-88be-6284b395a210"
+ "97ce4a50-97a8-43a4-920c-0ec4c20ca96b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14989"
],
"x-ms-correlation-request-id": [
- "c70e0b0a-ec0e-4691-8fb3-9edfd61c878b"
+ "78e35397-c24d-4bd2-8e34-0baa0350fcd9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211304Z:c70e0b0a-ec0e-4691-8fb3-9edfd61c878b"
+ "WESTUS2:20180309T195620Z:78e35397-c24d-4bd2-8e34-0baa0350fcd9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -340,7 +340,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64fecb9f-ebb7-4780-9610-b2dc322a0cae"
+ "7ba3324f-aaed-4bd2-a418-fdc02689630a"
],
"accept-language": [
"en-US"
@@ -362,7 +362,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:03 GMT"
+ "Fri, 09 Mar 2018 19:56:20 GMT"
],
"Pragma": [
"no-cache"
@@ -380,16 +380,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "61028667-c6a1-475c-a405-0a0a582b1204"
+ "bb20d879-4b7a-4048-888f-d83a6d5b5cdb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14988"
],
"x-ms-correlation-request-id": [
- "ea18ab1a-f610-4684-80cd-9fb355d3039d"
+ "79298f23-38c7-4d96-a1a2-f2222c1d6640"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211304Z:ea18ab1a-f610-4684-80cd-9fb355d3039d"
+ "WESTUS2:20180309T195620Z:79298f23-38c7-4d96-a1a2-f2222c1d6640"
],
"X-Content-Type-Options": [
"nosniff"
@@ -404,7 +404,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ec0149b-a38a-4af8-9057-f772ffb81446"
+ "94a9e918-5bca-40fd-be1f-45e120710f7b"
],
"accept-language": [
"en-US"
@@ -426,7 +426,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:13:03 GMT"
+ "Fri, 09 Mar 2018 19:56:20 GMT"
],
"Pragma": [
"no-cache"
@@ -444,16 +444,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "edbbcaaa-2460-4086-bb4b-241407502124"
+ "c62706ad-d4ae-44ea-808c-4acf1d46add3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14987"
],
"x-ms-correlation-request-id": [
- "2b031edb-c3da-42bc-bb44-1db1cc9528ed"
+ "82bacd22-34df-4910-b26f-1c40fad57f32"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T211304Z:2b031edb-c3da-42bc-bb44-1db1cc9528ed"
+ "WESTUS2:20180309T195620Z:82bacd22-34df-4910-b26f-1c40fad57f32"
],
"X-Content-Type-Options": [
"nosniff"
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiRevisionTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiRevisionTests/CreateListUpdateDelete.json
index e6fd937356e9d..37ad2b8044c14 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiRevisionTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiRevisionTests/CreateListUpdateDelete.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "3b7abc80-915e-46ee-ae33-daf49425ed4c"
+ "8c6d765c-26c6-4df5-93b4-080ef58e915c"
],
"accept-language": [
"en-US"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:24 GMT"
+ "Fri, 09 Mar 2018 19:48:59 GMT"
],
"Pragma": [
"no-cache"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5dcee6e9-73a9-4522-bd74-3a708e80301e",
- "fcbd07cb-b8bc-4f0c-94b3-6dc4f1d8c0c6"
+ "ac1e422b-3b73-4e8f-ab46-f7e8a995980e",
+ "fa79cfd3-a304-4c7d-86c5-009f38d5a42a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1192"
],
"x-ms-correlation-request-id": [
- "fe2d77e4-42f7-4a5d-ae2e-1bec89077230"
+ "13b9e1d6-8765-47c3-82cb-4333223e3ff2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013424Z:fe2d77e4-42f7-4a5d-ae2e-1bec89077230"
+ "WESTUS2:20180309T194859Z:13b9e1d6-8765-47c3-82cb-4333223e3ff2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c806abb-3476-419e-a192-37b3b8e4a04d"
+ "84fb6cb8-5541-4222-a8dd-bfabcd85ff8d"
],
"accept-language": [
"en-US"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:24 GMT"
+ "Fri, 09 Mar 2018 19:48:59 GMT"
],
"Pragma": [
"no-cache"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5b231a27-85f4-47bf-88e9-c8849a176f2b"
+ "ab12fbf6-2bea-4852-9185-0a8692b6967d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14988"
],
"x-ms-correlation-request-id": [
- "ac3876c5-1203-427e-a0af-7b1a2605627b"
+ "ad5a3784-049e-4a1e-a386-c3dcf1429d9c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013424Z:ac3876c5-1203-427e-a0af-7b1a2605627b"
+ "WESTUS2:20180309T194900Z:ad5a3784-049e-4a1e-a386-c3dcf1429d9c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -142,8 +142,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"path\": \"swaggerApi\",\r\n \"contentValue\": \"{\\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 \"contentFormat\": \"swagger-json\"\r\n }\r\n}",
"RequestHeaders": {
@@ -154,7 +154,7 @@
"18238"
],
"x-ms-client-request-id": [
- "26a49e98-8336-4a99-8d9d-1d8b900c42c1"
+ "7eedb148-d8ab-45a9-b99b-bb3b0956a645"
],
"accept-language": [
"en-US"
@@ -164,7 +164,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2195\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7337\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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}",
"ResponseHeaders": {
"Content-Length": [
"848"
@@ -179,13 +179,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:25 GMT"
+ "Fri, 09 Mar 2018 19:49:00 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN/c=\""
+ "\"AAAAAAAAOKY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -194,16 +194,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "886a9154-7feb-4f5d-8e97-19e70bbe59c2"
+ "82409a01-0204-4f93-943c-deefae38b454"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1191"
],
"x-ms-correlation-request-id": [
- "ca272346-f7bd-4d51-aeea-c8224978cc6f"
+ "eeb54a08-d0cc-4a64-bb57-50c1b4c130e1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013425Z:ca272346-f7bd-4d51-aeea-c8224978cc6f"
+ "WESTUS2:20180309T194901Z:eeb54a08-d0cc-4a64-bb57-50c1b4c130e1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -212,13 +212,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8050b76-8e1e-4d49-85ad-183b007c2467"
+ "6147929b-125e-4178-bd39-0382af2e571e"
],
"accept-language": [
"en-US"
@@ -228,7 +228,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2195\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7337\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api\",\r\n \"path\": \"swaggerApi\",\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}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -240,7 +240,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:25 GMT"
+ "Fri, 09 Mar 2018 19:49:01 GMT"
],
"Pragma": [
"no-cache"
@@ -249,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN/c=\""
+ "\"AAAAAAAAOKY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -261,16 +261,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "43398b05-83ef-4ac6-a1d0-eca88a741751"
+ "b529ef9a-a6dc-48e2-a741-19577e3409be"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14987"
],
"x-ms-correlation-request-id": [
- "7f3b195b-fd1c-450f-b085-7a1d48c0e855"
+ "2544fa36-2c3f-4699-b336-88d618724b58"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013425Z:7f3b195b-fd1c-450f-b085-7a1d48c0e855"
+ "WESTUS2:20180309T194901Z:2544fa36-2c3f-4699-b336-88d618724b58"
],
"X-Content-Type-Options": [
"nosniff"
@@ -279,13 +279,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a2df3ee-f00c-443b-a331-d8a4012e3890"
+ "7cd184cd-1c7c-4682-b0a2-9f9e5a60630b"
],
"accept-language": [
"en-US"
@@ -310,7 +310,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:18 GMT"
+ "Fri, 09 Mar 2018 19:49:05 GMT"
],
"Pragma": [
"no-cache"
@@ -322,16 +322,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4c0bc78d-f140-4770-b2ff-b5d86b125841"
+ "e38f80c5-39fe-4d30-9db0-492887ba1089"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14975"
],
"x-ms-correlation-request-id": [
- "1bde27f5-c606-4d84-8e0e-8701d59fa9f2"
+ "13bf67d2-94b1-46c2-9e7b-ec627d50f6ff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013519Z:1bde27f5-c606-4d84-8e0e-8701d59fa9f2"
+ "WESTUS2:20180309T194905Z:13bf67d2-94b1-46c2-9e7b-ec627d50f6ff"
],
"X-Content-Type-Options": [
"nosniff"
@@ -340,13 +340,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/operations?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/operations?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99ff3100-b61c-40e7-953f-5a5d4599bda3"
+ "8d14408e-7c68-4422-a3eb-344bfd80b43c"
],
"accept-language": [
"en-US"
@@ -356,7 +356,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"defaultValue\": null,\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 \"sample\": null\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"defaultValue\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"defaultValue\": null,\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\": \"5aa1e4a050f4b800a0f442a3\",\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\": \"5aa1e4a050f4b800a0f442a3\",\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"defaultValue\": null,\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": null,\r\n \"type\": \"integer\",\r\n \"defaultValue\": null,\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"description\": null,\r\n \"type\": \"integer\",\r\n \"defaultValue\": null,\r\n \"required\": false,\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"defaultValue\": null,\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"description\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"defaultValue\": null,\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"description\": null,\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"defaultValue\": null,\r\n \"required\": false,\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa1e4a050f4b800a0f442a3\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/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 \"defaultValue\": null,\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"description\": null,\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"sample\": null,\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"defaultValue\": null,\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 \"sample\": null\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"defaultValue\": null,\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 \"sample\": null\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"defaultValue\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"defaultValue\": null,\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\": \"5aa2e52c50f4b800a0f44322\",\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\": \"5aa2e52c50f4b800a0f44322\",\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"defaultValue\": null,\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"contenttype2\",\r\n \"sample\": \"contenttype2 example\",\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"pet\"\r\n }\r\n ],\r\n \"headers\": [\r\n {\r\n \"name\": \"header1\",\r\n \"description\": null,\r\n \"type\": \"integer\",\r\n \"defaultValue\": null,\r\n \"required\": false,\r\n \"values\": []\r\n },\r\n {\r\n \"name\": \"header2\",\r\n \"description\": null,\r\n \"type\": \"integer\",\r\n \"defaultValue\": null,\r\n \"required\": false,\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"defaultValue\": null,\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"Dummy description\",\r\n \"request\": {\r\n \"description\": null,\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"defaultValue\": null,\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"pet\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"text/html\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"description\": null,\r\n \"queryParameters\": [\r\n {\r\n \"name\": \"tags\",\r\n \"description\": \"tags to filter by\",\r\n \"type\": \"string\",\r\n \"defaultValue\": null,\r\n \"required\": false,\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 \"defaultValue\": null,\r\n \"required\": false,\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"petArray\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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 \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\r\n \"typeName\": \"errorModel\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": null,\r\n \"schemaId\": \"5aa2e52c50f4b800a0f44322\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/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 \"defaultValue\": null,\r\n \"required\": true,\r\n \"values\": []\r\n }\r\n ],\r\n \"description\": \"resourceWithFormData desc\",\r\n \"request\": {\r\n \"description\": null,\r\n \"queryParameters\": [],\r\n \"headers\": [],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"multipart/form-data\",\r\n \"sample\": null,\r\n \"formParameters\": [\r\n {\r\n \"name\": \"dummyFormDataParam\",\r\n \"description\": \"dummyFormDataParam description\",\r\n \"type\": \"string\",\r\n \"defaultValue\": null,\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 \"sample\": null\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -368,7 +368,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:25 GMT"
+ "Fri, 09 Mar 2018 19:49:01 GMT"
],
"Pragma": [
"no-cache"
@@ -386,16 +386,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96dd0aa8-66b1-4fce-8ed1-a8898ea80763"
+ "eb8b257c-7b9f-4129-a639-479139e6cc20"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14986"
],
"x-ms-correlation-request-id": [
- "36a438d5-86ec-4a7a-b163-8fddba0150e3"
+ "dae1907d-e11d-4080-be76-4cd9f6f66704"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013425Z:36a438d5-86ec-4a7a-b163-8fddba0150e3"
+ "WESTUS2:20180309T194901Z:dae1907d-e11d-4080-be76-4cd9f6f66704"
],
"X-Content-Type-Options": [
"nosniff"
@@ -404,13 +404,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51f29beb-f3d5-4cd0-b3d3-86b41981270f"
+ "f1c37078-7329-424d-af50-11bd1c83fdaf"
],
"accept-language": [
"en-US"
@@ -432,13 +432,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:26 GMT"
+ "Fri, 09 Mar 2018 19:49:01 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN/c=\""
+ "\"AAAAAAAAOKY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -447,16 +447,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "221da130-6c80-4a96-9ab8-c9f6fee40a8b"
+ "48112452-372d-4d07-809b-3eeb16b45cb8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14985"
],
"x-ms-correlation-request-id": [
- "f2e853fb-1fb8-4a4e-b0bd-72902d3ec837"
+ "7af8b217-f7b9-492f-a10c-30338271694c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013426Z:f2e853fb-1fb8-4a4e-b0bd-72902d3ec837"
+ "WESTUS2:20180309T194901Z:7af8b217-f7b9-492f-a10c-30338271694c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -465,13 +465,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "849ea36c-2a7e-4493-8e4c-c45c5d43c0be"
+ "02f765f6-2cf0-4742-a8eb-64340209deec"
],
"accept-language": [
"en-US"
@@ -493,13 +493,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:58 GMT"
+ "Fri, 09 Mar 2018 19:49:03 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN/c=\""
+ "\"AAAAAAAAOKY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -508,16 +508,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e1e2fa4-da6d-4436-b3fd-c88624606db4"
+ "d09e05b1-8c7b-48a6-95ad-f785c08ffdfa"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14980"
],
"x-ms-correlation-request-id": [
- "80b0cf9b-4a8f-4239-9e4a-270f650bb50c"
+ "169f0dda-b4b0-4944-b7cb-f98cb0c36409"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013459Z:80b0cf9b-4a8f-4239-9e4a-270f650bb50c"
+ "WESTUS2:20180309T194903Z:169f0dda-b4b0-4944-b7cb-f98cb0c36409"
],
"X-Content-Type-Options": [
"nosniff"
@@ -526,8 +526,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195%3Brev%3D2?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NSUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337%3Brev%3D2?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"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 \"authenticationSettings\": {},\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"displayName\": \"Swagger Petstore Extensive2\",\r\n \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi2\",\r\n \"protocols\": [\r\n \"http\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
@@ -538,7 +538,7 @@
"503"
],
"x-ms-client-request-id": [
- "e50d6d80-a19a-4426-9530-9b53c4a85441"
+ "b94fd28c-71d1-4207-85e3-bd929d19651f"
],
"accept-language": [
"en-US"
@@ -548,7 +548,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid2195;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive2\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi2\",\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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7337;rev=2\",\r\n \"properties\": {\r\n \"displayName\": \"Swagger Petstore Extensive2\",\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 \"serviceUrl\": \"http://petstore.swagger.wordnik.com/api2\",\r\n \"path\": \"swaggerApi2\",\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 }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"839"
@@ -563,13 +563,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:26 GMT"
+ "Fri, 09 Mar 2018 19:49:01 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOAM=\""
+ "\"AAAAAAAAOLE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -578,16 +578,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8c1b196d-1f4a-4548-8efa-2680d455adb2"
+ "422b5b67-c49b-4146-9b9c-9b8a8a7110a6"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1190"
],
"x-ms-correlation-request-id": [
- "f1a69568-fcf8-495c-97ee-beb5a697eb23"
+ "f4e331c2-2e9d-4e99-b5ba-0faa19bf045d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013426Z:f1a69568-fcf8-495c-97ee-beb5a697eb23"
+ "WESTUS2:20180309T194902Z:f4e331c2-2e9d-4e99-b5ba-0faa19bf045d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -596,19 +596,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195%3Brev%3D2/operations/firstOpRev5880?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NSUzQnJldiUzRDIvb3BlcmF0aW9ucy9maXJzdE9wUmV2NTg4MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337%3Brev%3D2/operations/firstOpRev2992?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNyUzQnJldiUzRDIvb3BlcmF0aW9ucy9maXJzdE9wUmV2Mjk5Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet6439\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet3096\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8888\",\r\n \"description\": \"description_azsmnet36\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet7541\",\r\n \"description\": \"description_azsmnet3633\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet6813\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7828\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet3018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet2909\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet9809\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet3183\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"template_azsmnet7102\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet6580\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet9804\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet7399\",\r\n \"description\": \"description_azsmnet4767\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet8249\",\r\n \"description\": \"description_azsmnet6952\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet307\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4737\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet9957\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet103\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet3800\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet856\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"template_azsmnet6366\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1527"
+ "1526"
],
"x-ms-client-request-id": [
- "c7f42805-2208-46e7-843f-d70900a8fc39"
+ "bd75ffc3-a48d-41a3-a980-1a403ddfaab7"
],
"accept-language": [
"en-US"
@@ -618,10 +618,10 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2/operations/firstOpRev5880\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev5880\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet3183\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet7102\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet6439\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet3096\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8888\",\r\n \"description\": \"description_azsmnet36\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet7541\",\r\n \"description\": \"description_azsmnet3633\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet6813\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7828\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet3018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet2909\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet9809\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2/operations/firstOpRev2992\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev2992\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet856\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet6366\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet6580\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet9804\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet7399\",\r\n \"description\": \"description_azsmnet4767\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet8249\",\r\n \"description\": \"description_azsmnet6952\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet307\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4737\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet9957\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet103\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet3800\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1932"
+ "1931"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -633,13 +633,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:26 GMT"
+ "Fri, 09 Mar 2018 19:49:02 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOAU=\""
+ "\"AAAAAAAAOLM=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -648,16 +648,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a5a5687f-9172-41d8-889a-5bc2414fde71"
+ "e6fa5d74-c0f3-4c63-9bc6-c3cd15155eaa"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1189"
],
"x-ms-correlation-request-id": [
- "925b5633-d254-4c01-9580-e27055395013"
+ "89fb48ef-763c-49b0-b622-4890ab29cdad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013426Z:925b5633-d254-4c01-9580-e27055395013"
+ "WESTUS2:20180309T194902Z:89fb48ef-763c-49b0-b622-4890ab29cdad"
],
"X-Content-Type-Options": [
"nosniff"
@@ -666,19 +666,19 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195%3Brev%3D2/operations/secondOpName224?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NSUzQnJldiUzRDIvb3BlcmF0aW9ucy9zZWNvbmRPcE5hbWUyMjQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337%3Brev%3D2/operations/secondOpName2509?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNyUzQnJldiUzRDIvb3BlcmF0aW9ucy9zZWNvbmRPcE5hbWUyNTA5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet9527\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet3320\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet2924\",\r\n \"description\": \"description_azsmnet9439\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet8554\",\r\n \"description\": \"description_azsmnet3078\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet3170\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7552\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet3363\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet7566\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet1596\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet5271\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"template_azsmnet6045\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description_azsmnet5456\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet7448\",\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet9372\",\r\n \"description\": \"description_azsmnet834\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet4411\",\r\n \"description\": \"description_azsmnet5849\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet8390\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet8627\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet7234\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet5862\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet9725\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"displayName\": \"operation_azsmnet2539\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"template_azsmnet8777\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1528"
+ "1527"
],
"x-ms-client-request-id": [
- "46e495d3-d2e3-4374-9b8f-4558fcc8c013"
+ "f57e561c-5ba7-45cc-bec5-5077f453de9c"
],
"accept-language": [
"en-US"
@@ -688,10 +688,10 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2/operations/secondOpName224\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"secondOpName224\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet5271\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/template_azsmnet6045\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet9527\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet3320\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet2924\",\r\n \"description\": \"description_azsmnet9439\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet8554\",\r\n \"description\": \"description_azsmnet3078\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet3170\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7552\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet3363\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet7566\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet1596\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2/operations/secondOpName2509\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"secondOpName2509\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet2539\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/template_azsmnet8777\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet5456\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet7448\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet9372\",\r\n \"description\": \"description_azsmnet834\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet4411\",\r\n \"description\": \"description_azsmnet5849\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet8390\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet8627\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet7234\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet5862\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet9725\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1935"
+ "1936"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -703,13 +703,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:27 GMT"
+ "Fri, 09 Mar 2018 19:49:02 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOAY=\""
+ "\"AAAAAAAAOLQ=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -718,16 +718,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "44786ab1-7832-4bd0-bcb8-0c41a7b006fc"
+ "c2206252-62ba-4856-b5e8-42a558be61ec"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1188"
],
"x-ms-correlation-request-id": [
- "9065b7fb-bfa2-49fe-b102-fa1e517579a9"
+ "6f1c7a21-481f-4cf0-ab1e-02e55c1ec54d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013427Z:9065b7fb-bfa2-49fe-b102-fa1e517579a9"
+ "WESTUS2:20180309T194902Z:6f1c7a21-481f-4cf0-ab1e-02e55c1ec54d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -736,13 +736,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195%3Brev%3D2/operations?$top=1&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NSUzQnJldiUzRDIvb3BlcmF0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337%3Brev%3D2/operations?$top=1&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNyUzQnJldiUzRDIvb3BlcmF0aW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8b659406-726f-4009-92bd-ccdf91a1f250"
+ "c4398fdb-ea54-49ba-aa4a-4840ca90ab52"
],
"accept-language": [
"en-US"
@@ -752,7 +752,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2/operations/firstOpRev5880\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev5880\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet3183\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet7102\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet6439\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet3096\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet8888\",\r\n \"description\": \"description_azsmnet36\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet7541\",\r\n \"description\": \"description_azsmnet3633\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet6813\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7828\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet3018\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet2909\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet9809\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2/operations?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2/operations/secondOpName2509\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"secondOpName2509\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet2539\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/template_azsmnet8777\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet5456\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet7448\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet9372\",\r\n \"description\": \"description_azsmnet834\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet4411\",\r\n \"description\": \"description_azsmnet5849\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet8390\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet8627\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet7234\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet5862\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet9725\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2/operations?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -764,7 +764,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:32 GMT"
+ "Fri, 09 Mar 2018 19:49:02 GMT"
],
"Pragma": [
"no-cache"
@@ -782,16 +782,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5c836409-6671-4f5c-8c07-8eab1c232b2c"
+ "4659c3b7-a161-40ce-8c32-dc58b91368e2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14984"
],
"x-ms-correlation-request-id": [
- "fd4fd837-2068-431a-81d5-04ad67908ea3"
+ "533ce68d-5a76-4414-89ef-c3f669ee6fef"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013432Z:fd4fd837-2068-431a-81d5-04ad67908ea3"
+ "WESTUS2:20180309T194902Z:533ce68d-5a76-4414-89ef-c3f669ee6fef"
],
"X-Content-Type-Options": [
"nosniff"
@@ -800,13 +800,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2/operations?%24top=1&api-version=2018-01-01&%24skip=1",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NTtyZXY9Mi9vcGVyYXRpb25zPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEmJTI0c2tpcD0x",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2/operations?%24top=1&api-version=2018-01-01&%24skip=1",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNztyZXY9Mi9vcGVyYXRpb25zPyUyNHRvcD0xJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEmJTI0c2tpcD0x",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4658ab7d-7565-4036-aa0a-e59b6c12c352"
+ "6cfaaf0f-be3c-4f15-8996-05f5af9b2444"
],
"accept-language": [
"en-US"
@@ -816,7 +816,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195;rev=2/operations/secondOpName224\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"secondOpName224\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet5271\",\r\n \"method\": \"GET\",\r\n \"urlTemplate\": \"/template_azsmnet6045\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet9527\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet3320\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet2924\",\r\n \"description\": \"description_azsmnet9439\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet8554\",\r\n \"description\": \"description_azsmnet3078\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet3170\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet7552\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet3363\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet7566\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet1596\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337;rev=2/operations/firstOpRev2992\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations\",\r\n \"name\": \"firstOpRev2992\",\r\n \"properties\": {\r\n \"displayName\": \"operation_azsmnet856\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/template_azsmnet6366\",\r\n \"templateParameters\": [],\r\n \"description\": \"description_azsmnet6580\",\r\n \"request\": {\r\n \"description\": \"description_azsmnet9804\",\r\n \"queryParameters\": [],\r\n \"headers\": [\r\n {\r\n \"name\": \"param_azsmnet7399\",\r\n \"description\": \"description_azsmnet4767\",\r\n \"type\": \"int\",\r\n \"defaultValue\": \"b\",\r\n \"required\": true,\r\n \"values\": [\r\n \"a\",\r\n \"b\",\r\n \"c\"\r\n ]\r\n },\r\n {\r\n \"name\": \"param_azsmnet8249\",\r\n \"description\": \"description_azsmnet6952\",\r\n \"type\": \"bool\",\r\n \"defaultValue\": \"e\",\r\n \"required\": false,\r\n \"values\": [\r\n \"d\",\r\n \"e\",\r\n \"f\"\r\n ]\r\n }\r\n ],\r\n \"representations\": [\r\n {\r\n \"contentType\": \"text/plain\",\r\n \"sample\": \"sample_azsmnet307\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet4737\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": \"description_azsmnet9957\",\r\n \"representations\": [\r\n {\r\n \"contentType\": \"application/json\",\r\n \"sample\": \"sample_azsmnet103\"\r\n },\r\n {\r\n \"contentType\": \"application/xml\",\r\n \"sample\": \"sample_azsmnet3800\"\r\n }\r\n ],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -828,7 +828,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:41 GMT"
+ "Fri, 09 Mar 2018 19:49:02 GMT"
],
"Pragma": [
"no-cache"
@@ -846,16 +846,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e2877b1c-1d0a-42c2-88f2-34335453de4b"
+ "ccdb32e5-9064-40d3-a071-e798057e7353"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14983"
],
"x-ms-correlation-request-id": [
- "f1a32eb3-42a1-45cc-985f-c5ba497d12ca"
+ "abc16fe0-70f3-49ca-bd2c-a12b48d7dd9b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013441Z:f1a32eb3-42a1-45cc-985f-c5ba497d12ca"
+ "WESTUS2:20180309T194903Z:abc16fe0-70f3-49ca-bd2c-a12b48d7dd9b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -864,13 +864,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/revisions?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/revisions?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZXZpc2lvbnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa033410-099a-499e-9e21-cca0a071adb7"
+ "4a1eea2e-b8ed-46a5-a483-8f5e008bd408"
],
"accept-language": [
"en-US"
@@ -880,7 +880,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"apiId\": \"/apis/apiid2195;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2018-03-09T01:34:26.047Z\",\r\n \"updatedDateTime\": \"2018-03-09T01:34:26.047Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerApi2;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/apiid2195;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2018-03-09T01:34:24.84Z\",\r\n \"updatedDateTime\": \"2018-03-09T01:34:24.84Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerApi\",\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 \"apiId\": \"/apis/apiid7337;rev=2\",\r\n \"apiRevision\": \"2\",\r\n \"createdDateTime\": \"2018-03-09T19:49:01.67Z\",\r\n \"updatedDateTime\": \"2018-03-09T19:49:01.67Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerApi2;rev=2\",\r\n \"isOnline\": true,\r\n \"isCurrent\": false\r\n },\r\n {\r\n \"apiId\": \"/apis/apiid7337;rev=1\",\r\n \"apiRevision\": \"1\",\r\n \"createdDateTime\": \"2018-03-09T19:49:00.653Z\",\r\n \"updatedDateTime\": \"2018-03-09T19:49:00.653Z\",\r\n \"description\": null,\r\n \"privateUrl\": \"/swaggerApi\",\r\n \"isOnline\": true,\r\n \"isCurrent\": true\r\n }\r\n ],\r\n \"count\": 2,\r\n \"nextLink\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -892,7 +892,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:53 GMT"
+ "Fri, 09 Mar 2018 19:49:03 GMT"
],
"Pragma": [
"no-cache"
@@ -910,16 +910,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8560db2f-b774-4ce2-93c8-50f53f3d29a7"
+ "c878f3a0-ab9b-4ff4-bfa8-b9251bb4407f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14982"
],
"x-ms-correlation-request-id": [
- "c37ce6bf-3726-4ef6-9e66-2689906a3689"
+ "8bdb7884-dd4d-4e66-b583-def6af6ec5c5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013453Z:c37ce6bf-3726-4ef6-9e66-2689906a3689"
+ "WESTUS2:20180309T194903Z:8bdb7884-dd4d-4e66-b583-def6af6ec5c5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -928,13 +928,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195%3Brev%3D2?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NSUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337%3Brev%3D2?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNyUzQnJldiUzRDI/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f937567-04ef-4c27-9bbe-cd97c10bae51"
+ "3dec4a54-9675-4a18-b98b-c15e6d9b5ee3"
],
"accept-language": [
"en-US"
@@ -956,13 +956,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:34:57 GMT"
+ "Fri, 09 Mar 2018 19:49:03 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOAM=\""
+ "\"AAAAAAAAOLE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -971,16 +971,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b4b35205-9e65-46ac-b944-a435f0746c6d"
+ "dc2c14d6-99d9-4525-82e7-46633e220254"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14981"
],
"x-ms-correlation-request-id": [
- "4237051b-8bcc-46ed-923c-570d0b6b3a02"
+ "8e6abe28-55f2-4fc9-b238-e9a43e663f3d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013458Z:4237051b-8bcc-46ed-923c-570d0b6b3a02"
+ "WESTUS2:20180309T194903Z:8e6abe28-55f2-4fc9-b238-e9a43e663f3d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -989,13 +989,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2956ba4f-b894-4b62-9a91-5ddc130ef103"
+ "31d0f7c7-0bc0-4b21-93bd-e8cc9dd9f5bc"
],
"accept-language": [
"en-US"
@@ -1017,7 +1017,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:11 GMT"
+ "Fri, 09 Mar 2018 19:49:03 GMT"
],
"Pragma": [
"no-cache"
@@ -1035,16 +1035,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db359b1d-0821-428d-b507-4c32da3bdd3a"
+ "15ff9c54-16c7-4c6a-928a-73a8259f5429"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14979"
],
"x-ms-correlation-request-id": [
- "66d730d5-eace-4d6f-b94b-4a4b994dccd0"
+ "c8db5a26-56d2-4793-93b2-d5ad0b06514c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013512Z:66d730d5-eace-4d6f-b94b-4a4b994dccd0"
+ "WESTUS2:20180309T194903Z:c8db5a26-56d2-4793-93b2-d5ad0b06514c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1053,13 +1053,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZWxlYXNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d77e102f-565a-4788-b655-48ed442d51d2"
+ "8a0b5911-f44d-4830-8b9f-09ece2f1d648"
],
"accept-language": [
"en-US"
@@ -1069,7 +1069,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid1624\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2018-03-09T01:35:17.633Z\",\r\n \"updatedDateTime\": \"2018-03-09T01:35:17.633Z\",\r\n \"notes\": \"update_desc2925\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3572\",\r\n \"properties\": {\r\n \"createdDateTime\": \"2018-03-09T19:49:03.8Z\",\r\n \"updatedDateTime\": \"2018-03-09T19:49:03.8Z\",\r\n \"notes\": \"update_desc5684\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1081,7 +1081,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:18 GMT"
+ "Fri, 09 Mar 2018 19:49:04 GMT"
],
"Pragma": [
"no-cache"
@@ -1099,16 +1099,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ae0a16fa-206f-4cd4-b1cd-5a87b1da8bf4"
+ "bafcd500-3e7f-43f8-b863-15ed15ac37c7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14976"
],
"x-ms-correlation-request-id": [
- "8d9fd4e1-0090-44fc-9b3e-91dd70fb10ed"
+ "7a03d055-e974-45d5-8631-aa4291d79a38"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013518Z:8d9fd4e1-0090-44fc-9b3e-91dd70fb10ed"
+ "WESTUS2:20180309T194904Z:7a03d055-e974-45d5-8631-aa4291d79a38"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1117,10 +1117,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNjI0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNTcyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid2195;rev=2\",\r\n \"notes\": \"revision_description9246\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid7337;rev=2\",\r\n \"notes\": \"revision_description7596\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1129,7 +1129,7 @@
"108"
],
"x-ms-client-request-id": [
- "ad528fbc-46af-49c8-b9d6-f9f1d0151065"
+ "8becdafd-bdd1-4fb3-9ebb-0edfcef44c7e"
],
"accept-language": [
"en-US"
@@ -1139,7 +1139,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid1624\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195\",\r\n \"createdDateTime\": \"2018-03-09T01:35:17.6340275Z\",\r\n \"updatedDateTime\": \"2018-03-09T01:35:17.6340275Z\",\r\n \"notes\": \"revision_description9246\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3572\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337\",\r\n \"createdDateTime\": \"2018-03-09T19:49:03.7999235Z\",\r\n \"updatedDateTime\": \"2018-03-09T19:49:03.7999235Z\",\r\n \"notes\": \"revision_description7596\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"649"
@@ -1154,13 +1154,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:17 GMT"
+ "Fri, 09 Mar 2018 19:49:03 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOAk=\""
+ "\"AAAAAAAAOLc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1169,16 +1169,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dab38d96-113c-407c-8a33-11327d79483e"
+ "7dd607a7-3d62-40c3-9174-b415b415d8e1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1187"
],
"x-ms-correlation-request-id": [
- "4012b902-1618-4d72-bbd8-024d6af665e4"
+ "eecccdcd-edd8-4aa4-83c0-f5e6e19eb090"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013518Z:4012b902-1618-4d72-bbd8-024d6af665e4"
+ "WESTUS2:20180309T194904Z:eecccdcd-edd8-4aa4-83c0-f5e6e19eb090"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1187,13 +1187,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNjI0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNTcyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b44385e3-3e07-4894-8558-02397dc88c79"
+ "410f8343-5798-4915-841b-0ae3e37a6168"
],
"accept-language": [
"en-US"
@@ -1215,13 +1215,13 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:17 GMT"
+ "Fri, 09 Mar 2018 19:49:04 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAOAk=\""
+ "\"AAAAAAAAOLc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1230,16 +1230,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef49810d-08e0-4f5b-adff-f08f966b2ada"
+ "c91820c1-345b-403c-8e4f-470b69d2f6d6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14978"
],
"x-ms-correlation-request-id": [
- "7a8105ad-7dd1-4ce8-935b-ffbbad6da4ae"
+ "6d9b3b5a-afce-4901-bd34-d776b127b469"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013518Z:7a8105ad-7dd1-4ce8-935b-ffbbad6da4ae"
+ "WESTUS2:20180309T194904Z:6d9b3b5a-afce-4901-bd34-d776b127b469"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1248,10 +1248,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNjI0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNTcyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid2195;rev=2\",\r\n \"notes\": \"update_desc2925\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"apiId\": \"/apis/apiid7337;rev=2\",\r\n \"notes\": \"update_desc5684\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1260,10 +1260,10 @@
"99"
],
"x-ms-client-request-id": [
- "da483abc-fcaa-4e2e-9e03-a898f7e967cc"
+ "9ce077d9-ea8d-496b-9c5b-b882ed23b312"
],
"If-Match": [
- "\"AAAAAAAAOAk=\""
+ "\"AAAAAAAAOLc=\""
],
"accept-language": [
"en-US"
@@ -1282,7 +1282,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:17 GMT"
+ "Fri, 09 Mar 2018 19:49:04 GMT"
],
"Pragma": [
"no-cache"
@@ -1294,16 +1294,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "15d62a50-8c74-41cb-95b4-0e7dcbba2728"
+ "822718a8-6475-4413-abaf-d2addb011f0e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1186"
],
"x-ms-correlation-request-id": [
- "a58299e3-45c6-4ae8-9691-73e2050071f8"
+ "94072514-d97a-45a4-8e94-9b51bf6cb564"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013518Z:a58299e3-45c6-4ae8-9691-73e2050071f8"
+ "WESTUS2:20180309T194904Z:94072514-d97a-45a4-8e94-9b51bf6cb564"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1312,13 +1312,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NS9yZWxlYXNlcy9hcGlyZWxlYXNlaWQxNjI0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNy9yZWxlYXNlcy9hcGlyZWxlYXNlaWQzNTcyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "099f10ff-39e2-42c2-a733-be749d13be8d"
+ "404cfc07-883f-4520-ac20-15d4023c4a36"
],
"accept-language": [
"en-US"
@@ -1328,7 +1328,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195/releases/apireleaseid1624\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid1624\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195\",\r\n \"createdDateTime\": \"2018-03-09T01:35:17.633Z\",\r\n \"updatedDateTime\": \"2018-03-09T01:35:17.633Z\",\r\n \"notes\": \"update_desc2925\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337/releases/apireleaseid3572\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/releases\",\r\n \"name\": \"apireleaseid3572\",\r\n \"properties\": {\r\n \"apiId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337\",\r\n \"createdDateTime\": \"2018-03-09T19:49:03.8Z\",\r\n \"updatedDateTime\": \"2018-03-09T19:49:03.8Z\",\r\n \"notes\": \"update_desc5684\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -1340,7 +1340,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:18 GMT"
+ "Fri, 09 Mar 2018 19:49:04 GMT"
],
"Pragma": [
"no-cache"
@@ -1349,7 +1349,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAOAo=\""
+ "\"AAAAAAAAOLg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1361,16 +1361,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cdb6eba0-082f-4a82-b9c6-0efefac0560f"
+ "2b1d4b1b-50d5-442f-9ac5-852116387cb5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14977"
],
"x-ms-correlation-request-id": [
- "f5a47070-a80d-4f0e-935a-e12c79f83607"
+ "8bdba936-e729-4717-827a-fa8793e18b45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013518Z:f5a47070-a80d-4f0e-935a-e12c79f83607"
+ "WESTUS2:20180309T194904Z:8bdba936-e729-4717-827a-fa8793e18b45"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1379,13 +1379,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?deleteRevisions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?deleteRevisions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5372d2c-f4b8-475a-b349-46b7797780ae"
+ "1e579ac6-1dfb-4248-82b2-671c91871de7"
],
"If-Match": [
"*"
@@ -1410,7 +1410,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:18 GMT"
+ "Fri, 09 Mar 2018 19:49:05 GMT"
],
"Pragma": [
"no-cache"
@@ -1422,16 +1422,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fceb1569-9a1a-461e-b5c6-32b06fdea952"
+ "3a65d99d-040a-4b82-8300-e2fc59694349"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1185"
],
"x-ms-correlation-request-id": [
- "c52ef931-9858-4995-8035-67857ec8c1ae"
+ "e5ddb2d1-87f2-4e2a-8476-542b0af614c1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013519Z:c52ef931-9858-4995-8035-67857ec8c1ae"
+ "WESTUS2:20180309T194905Z:e5ddb2d1-87f2-4e2a-8476-542b0af614c1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1440,13 +1440,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid2195?deleteRevisions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMjE5NT9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7337?deleteRevisions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzMzNz9kZWxldGVSZXZpc2lvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80ab8407-6387-4b9f-9d78-8237f63db8f2"
+ "0416d938-ac53-471c-8cd7-50bbad4912f8"
],
"If-Match": [
"*"
@@ -1468,7 +1468,7 @@
"no-cache"
],
"Date": [
- "Fri, 09 Mar 2018 01:35:22 GMT"
+ "Fri, 09 Mar 2018 19:49:06 GMT"
],
"Pragma": [
"no-cache"
@@ -1480,16 +1480,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b9673051-e734-409c-806a-396898441779"
+ "de0bc8c1-8045-4185-8edc-358271607553"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1184"
],
"x-ms-correlation-request-id": [
- "47513ed2-f230-4890-bef4-22b5585e2626"
+ "b7a45d3d-072b-458a-bcee-598e127c1cd3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180309T013522Z:47513ed2-f230-4890-bef4-22b5585e2626"
+ "WESTUS2:20180309T194906Z:b7a45d3d-072b-458a-bcee-598e127c1cd3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1500,40 +1500,40 @@
],
"Names": {
"CreateListUpdateDelete": [
- "apiid2195",
- "apireleaseid1624",
- "firstOpRev5880",
- "secondOpName224",
- "revision_description9246",
- "update_desc2925"
+ "apiid7337",
+ "apireleaseid3572",
+ "firstOpRev2992",
+ "secondOpName2509",
+ "revision_description7596",
+ "update_desc5684"
],
"CreateOperationContract": [
- "azsmnet3183",
- "azsmnet6439",
- "azsmnet7102",
- "azsmnet3096",
- "azsmnet8888",
- "azsmnet36",
- "azsmnet7541",
- "azsmnet3633",
- "azsmnet6813",
- "azsmnet7828",
- "azsmnet3018",
- "azsmnet2909",
- "azsmnet9809",
- "azsmnet5271",
- "azsmnet9527",
- "azsmnet6045",
- "azsmnet3320",
- "azsmnet2924",
- "azsmnet9439",
- "azsmnet8554",
- "azsmnet3078",
- "azsmnet3170",
- "azsmnet7552",
- "azsmnet3363",
- "azsmnet7566",
- "azsmnet1596"
+ "azsmnet856",
+ "azsmnet6580",
+ "azsmnet6366",
+ "azsmnet9804",
+ "azsmnet7399",
+ "azsmnet4767",
+ "azsmnet8249",
+ "azsmnet6952",
+ "azsmnet307",
+ "azsmnet4737",
+ "azsmnet9957",
+ "azsmnet103",
+ "azsmnet3800",
+ "azsmnet2539",
+ "azsmnet5456",
+ "azsmnet8777",
+ "azsmnet7448",
+ "azsmnet9372",
+ "azsmnet834",
+ "azsmnet4411",
+ "azsmnet5849",
+ "azsmnet8390",
+ "azsmnet8627",
+ "azsmnet7234",
+ "azsmnet5862",
+ "azsmnet9725"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiSchemaTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiSchemaTests/CreateListUpdateDelete.json
index f28b2e8d8f2d7..428ebfc4305ae 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiSchemaTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiSchemaTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "f1225bdd-c645-4917-b7de-a2f203744d12"
+ "1d561bc9-c717-4efb-bfdb-d6ee7c8ddf77"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:14 GMT"
+ "Fri, 09 Mar 2018 19:54:37 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "67985897-25d1-412c-a20d-ee82c806b859",
- "b4522e63-34d7-41d8-b740-6c9728971a2f"
+ "db063434-514a-41e4-a564-6fb710d6e027",
+ "9c58bd51-8eb7-4817-b2df-b7bd834b783e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1191"
],
"x-ms-correlation-request-id": [
- "d6bcb487-1778-4dd0-a962-ea4efe49961e"
+ "eb9d3019-7ee0-49bb-b732-8f5a00141f8d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195914Z:d6bcb487-1778-4dd0-a962-ea4efe49961e"
+ "WESTUS2:20180309T195438Z:eb9d3019-7ee0-49bb-b732-8f5a00141f8d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1c49caf-2adb-4b82-9723-69487227c211"
+ "d208e506-119c-4282-94b2-7caebda5070e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:14 GMT"
+ "Fri, 09 Mar 2018 19:54:37 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "761a7cb6-c7b7-4b6b-85bc-2fc77a2a502f"
+ "628ad7dd-c29c-4fda-943b-32b711edc3df"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14992"
],
"x-ms-correlation-request-id": [
- "78052673-bf3d-414d-99e2-27bde53f39ba"
+ "322904f2-61af-4563-8df4-10c80ff56ef0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195914Z:78052673-bf3d-414d-99e2-27bde53f39ba"
+ "WESTUS2:20180309T195438Z:322904f2-61af-4563-8df4-10c80ff56ef0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -142,32 +142,32 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription1537\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header293\",\r\n \"query\": \"query9237\"\r\n },\r\n \"displayName\": \"apiname876\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription1268\",\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header2698\",\r\n \"query\": \"query6293\"\r\n },\r\n \"displayName\": \"apiname653\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "351"
+ "352"
],
"x-ms-client-request-id": [
- "1ebed0df-3a13-44ed-ae47-67ab910884ee"
+ "fa44ab6d-4bac-47ae-a049-efa99a81d401"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid792\",\r\n \"properties\": {\r\n \"displayName\": \"apiname876\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1537\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\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\": \"header293\",\r\n \"query\": \"query9237\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1537\",\r\n \"properties\": {\r\n \"displayName\": \"apiname653\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1268\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\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\": \"header2698\",\r\n \"query\": \"query6293\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "732"
+ "735"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -179,13 +179,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:15 GMT"
+ "Fri, 09 Mar 2018 19:54:38 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANsE=\""
+ "\"AAAAAAAAOP4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -194,16 +194,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c4d038ea-9fe6-4f03-ac2f-3af35fd1c031"
+ "79d3735b-91e6-4440-9b6f-33b0f27a8e98"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1190"
],
"x-ms-correlation-request-id": [
- "f77f7adf-abec-4c68-b5d5-97bb742aed20"
+ "c4d3e6c3-3013-42b1-9e1d-ad51ce18e528"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195915Z:f77f7adf-abec-4c68-b5d5-97bb742aed20"
+ "WESTUS2:20180309T195439Z:c4d3e6c3-3013-42b1-9e1d-ad51ce18e528"
],
"X-Content-Type-Options": [
"nosniff"
@@ -212,23 +212,23 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae257f33-d0e2-4fd0-99c0-5b18ac3bf289"
+ "b7459203-69f9-4881-932a-3e547bc1048c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid792\",\r\n \"properties\": {\r\n \"displayName\": \"apiname876\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1537\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\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\": \"header293\",\r\n \"query\": \"query9237\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid1537\",\r\n \"properties\": {\r\n \"displayName\": \"apiname653\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription1268\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\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\": \"header2698\",\r\n \"query\": \"query6293\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -240,7 +240,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:15 GMT"
+ "Fri, 09 Mar 2018 19:54:39 GMT"
],
"Pragma": [
"no-cache"
@@ -249,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANsE=\""
+ "\"AAAAAAAAOP4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -261,16 +261,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a3f4c94-a429-4463-be17-10ed857df374"
+ "50d7a138-0a66-47ff-b647-43cf8f3fd032"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14991"
],
"x-ms-correlation-request-id": [
- "9c7a0853-a67e-425f-8686-c8d59456af50"
+ "b5dcb9b3-dce4-4a41-80b9-6a8e7385bbec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195915Z:9c7a0853-a67e-425f-8686-c8d59456af50"
+ "WESTUS2:20180309T195439Z:b5dcb9b3-dce4-4a41-80b9-6a8e7385bbec"
],
"X-Content-Type-Options": [
"nosniff"
@@ -279,20 +279,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f5e8304-ee7a-4f2d-b244-ee1f93e642f3"
+ "305ff4d5-2609-4659-aa80-756798b3c6f1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Api not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -310,7 +310,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:17 GMT"
+ "Fri, 09 Mar 2018 19:54:42 GMT"
],
"Pragma": [
"no-cache"
@@ -322,16 +322,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c8cbdc37-12ba-43d0-8941-6a0498723a71"
+ "7dcc2360-004b-428a-943e-54c078c7fb96"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14987"
],
"x-ms-correlation-request-id": [
- "1f7d91dd-09e4-4ca9-aa5c-b09f96aa063b"
+ "e7c931f0-db1f-494c-9348-448972974ae6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195917Z:1f7d91dd-09e4-4ca9-aa5c-b09f96aa063b"
+ "WESTUS2:20180309T195442Z:e7c931f0-db1f-494c-9348-448972974ae6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -340,8 +340,8 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyL3NjaGVtYXMvc2NoZW1haWQzNjMyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNy9zY2hlbWFzL3NjaGVtYWlkNTA0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"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\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\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 \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\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": {
@@ -352,20 +352,20 @@
"1833"
],
"x-ms-client-request-id": [
- "ab52a2cc-012f-4b19-8231-a62d32ca61cf"
+ "233c7717-abe8-4939-bd9a-2ddc0ea5ef98"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid3632\",\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\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\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 \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid5040\",\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\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\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 \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\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}",
"ResponseHeaders": {
"Content-Length": [
- "2112"
+ "2113"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -377,13 +377,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:16 GMT"
+ "Fri, 09 Mar 2018 19:54:39 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANsM=\""
+ "\"AAAAAAAAOQE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "43995935-b56f-4415-aaf1-fe6f2eb4a97c"
+ "16fb8b65-9a42-482a-9dfc-8e4e92a9966c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1189"
],
"x-ms-correlation-request-id": [
- "19440a4c-b910-47bd-94d9-2f965cb269ac"
+ "e3b7619b-2903-4629-9034-225e6926a6ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195916Z:19440a4c-b910-47bd-94d9-2f965cb269ac"
+ "WESTUS2:20180309T195440Z:e3b7619b-2903-4629-9034-225e6926a6ee"
],
"X-Content-Type-Options": [
"nosniff"
@@ -410,23 +410,23 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyL3NjaGVtYXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNy9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa34a066-7741-44fc-8a66-6f0597608d5b"
+ "ddc19340-103d-4568-bbd6-dc80c104d7d4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid3632\",\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\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\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 \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\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 \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/schemas\",\r\n \"name\": \"schemaid5040\",\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\\\": [\\\"id\\\",\\r\\n \\\"name\\\"],\\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 \\\"$ref\\\": \\\"pet\\\"\\r\\n },\\r\\n {\\r\\n \\\"required\\\": [\\\"name\\\"],\\r\\n \\\"id\\\": {\\r\\n \\\"properties\\\": {\\r\\n \\\"type\\\": \\\"integer\\\",\\r\\n \\\"format\\\": \\\"int64\\\"\\r\\n }\\r\\n }\\r\\n }]\\r\\n },\\r\\n \\\"errorModel\\\": {\\r\\n \\\"required\\\": [\\\"code\\\",\\r\\n \\\"message\\\"],\\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 \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -438,7 +438,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:16 GMT"
+ "Fri, 09 Mar 2018 19:54:40 GMT"
],
"Pragma": [
"no-cache"
@@ -456,16 +456,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4162eb09-69c9-47ce-bb6d-aca6529a50b8"
+ "fb9c41a7-3d14-401d-9efc-d240b66b9bfb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14990"
],
"x-ms-correlation-request-id": [
- "d38061ee-fc64-4614-89a4-a6b5c78ed1c0"
+ "b13d5d91-07f0-43bc-a807-f85be48d835d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195916Z:d38061ee-fc64-4614-89a4-a6b5c78ed1c0"
+ "WESTUS2:20180309T195440Z:b13d5d91-07f0-43bc-a807-f85be48d835d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -474,20 +474,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyL3NjaGVtYXMvc2NoZW1haWQzNjMyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNy9zY2hlbWFzL3NjaGVtYWlkNTA0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40de57bd-af09-4ed7-b779-97e9d12b9719"
+ "905836b1-d34d-479f-977d-36a2e7cf305f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -502,13 +502,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:16 GMT"
+ "Fri, 09 Mar 2018 19:54:40 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANsM=\""
+ "\"AAAAAAAAOQE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -517,16 +517,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "24be79ed-113a-4192-9949-35675422ad41"
+ "e254bbe3-b410-4797-9a88-c64259299d09"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14989"
],
"x-ms-correlation-request-id": [
- "3e087040-751d-4054-a4bc-21fd84c23b6c"
+ "bffe78a2-cb2a-4145-bf39-15d35c127737"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195916Z:3e087040-751d-4054-a4bc-21fd84c23b6c"
+ "WESTUS2:20180309T195440Z:bffe78a2-cb2a-4145-bf39-15d35c127737"
],
"X-Content-Type-Options": [
"nosniff"
@@ -535,23 +535,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyL3NjaGVtYXMvc2NoZW1haWQzNjMyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNy9zY2hlbWFzL3NjaGVtYWlkNTA0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb2257da-7e6d-4b4f-86f4-a50f980b59f5"
+ "9a589e00-00de-42b9-9c68-9eb38eac0a40"
],
"If-Match": [
- "\"AAAAAAAANsM=\""
+ "\"AAAAAAAAOQE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -566,7 +566,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:16 GMT"
+ "Fri, 09 Mar 2018 19:54:40 GMT"
],
"Pragma": [
"no-cache"
@@ -578,16 +578,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03cef78c-2122-48e8-8429-20c526aa1142"
+ "067a03b1-134d-4be7-80cc-a515616d106f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1188"
],
"x-ms-correlation-request-id": [
- "6371b625-e22e-40fa-9c23-c46d8677a520"
+ "db0d7b72-08fc-44d1-803f-e9604e998e13"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195916Z:6371b625-e22e-40fa-9c23-c46d8677a520"
+ "WESTUS2:20180309T195441Z:db0d7b72-08fc-44d1-803f-e9604e998e13"
],
"X-Content-Type-Options": [
"nosniff"
@@ -596,13 +596,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyL3NjaGVtYXMvc2NoZW1haWQzNjMyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNy9zY2hlbWFzL3NjaGVtYWlkNTA0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c76d0031-968a-4c80-ba94-de5fe9dbd553"
+ "82dae7cc-9c23-4427-a2b8-62eea15bddec"
],
"If-Match": [
"*"
@@ -612,7 +612,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -624,7 +624,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:17 GMT"
+ "Fri, 09 Mar 2018 19:54:42 GMT"
],
"Pragma": [
"no-cache"
@@ -636,16 +636,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34e2997c-468c-4d21-b266-c36224900f9f"
+ "80309f3a-11eb-4a43-b549-2a2b6c8e440d"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1186"
],
"x-ms-correlation-request-id": [
- "5275ef43-e809-4461-83af-92ec5a418563"
+ "59b47608-a9b3-4db2-ad61-fbd1d971600e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195917Z:5275ef43-e809-4461-83af-92ec5a418563"
+ "WESTUS2:20180309T195442Z:59b47608-a9b3-4db2-ad61-fbd1d971600e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -654,20 +654,20 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792/schemas/schemaid3632?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyL3NjaGVtYXMvc2NoZW1haWQzNjMyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537/schemas/schemaid5040?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNy9zY2hlbWFzL3NjaGVtYWlkNTA0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7289a7e-0bc5-427c-aeb8-8f5399e81a13"
+ "56560cc9-acae-4d4e-861e-4da906cec53f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Schema not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -685,7 +685,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:16 GMT"
+ "Fri, 09 Mar 2018 19:54:40 GMT"
],
"Pragma": [
"no-cache"
@@ -697,16 +697,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e789d7c-4355-4c05-9bd7-4847829bb036"
+ "98625e2c-98eb-47a8-9810-c8913e6efa40"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14988"
],
"x-ms-correlation-request-id": [
- "35b747c4-a108-4581-9138-9ad4a3f7c042"
+ "8197bee6-472f-435e-b488-fd8ce628c59e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195916Z:35b747c4-a108-4581-9138-9ad4a3f7c042"
+ "WESTUS2:20180309T195441Z:8197bee6-472f-435e-b488-fd8ce628c59e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -715,13 +715,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c318db3-84fd-43e2-88a0-65c312380a6b"
+ "4140d02d-49a6-48a7-ba5e-ac82fd0effc1"
],
"If-Match": [
"*"
@@ -731,7 +731,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -746,7 +746,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:17 GMT"
+ "Fri, 09 Mar 2018 19:54:42 GMT"
],
"Pragma": [
"no-cache"
@@ -758,16 +758,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "81c5c113-1269-491b-87a9-f459fb73d5c6"
+ "6769c81c-5da3-40e5-b683-2155afa0f8b7"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1187"
],
"x-ms-correlation-request-id": [
- "355adad3-dca3-4e25-a61c-87455f5b16a5"
+ "831c669d-23b8-42b4-b353-70bcc1cadd43"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195917Z:355adad3-dca3-4e25-a61c-87455f5b16a5"
+ "WESTUS2:20180309T195442Z:831c669d-23b8-42b4-b353-70bcc1cadd43"
],
"X-Content-Type-Options": [
"nosniff"
@@ -776,13 +776,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid792?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzkyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid1537?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTUzNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f136a1f-f31d-4de3-b81d-b67341214dee"
+ "c1fca1eb-6a4b-48c6-a32c-58f1b93825cc"
],
"If-Match": [
"*"
@@ -792,7 +792,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -804,7 +804,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 19:59:17 GMT"
+ "Fri, 09 Mar 2018 19:54:42 GMT"
],
"Pragma": [
"no-cache"
@@ -816,16 +816,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e3fcb564-b824-40ff-88ee-f206442a2faa"
+ "5e3501a3-ce81-48d2-a7d5-cd495389855b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1185"
],
"x-ms-correlation-request-id": [
- "7407c834-239b-4d78-a45c-a09c502f0477"
+ "14710186-4c5b-40dd-921b-cf71d89b2164"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T195917Z:7407c834-239b-4d78-a45c-a09c502f0477"
+ "WESTUS2:20180309T195442Z:14710186-4c5b-40dd-921b-cf71d89b2164"
],
"X-Content-Type-Options": [
"nosniff"
@@ -836,12 +836,12 @@
],
"Names": {
"CreateListUpdateDelete": [
- "apiid792",
- "schemaid3632",
- "apiname876",
- "apidescription1537",
- "header293",
- "query9237"
+ "apiid1537",
+ "schemaid5040",
+ "apiname653",
+ "apidescription1268",
+ "header2698",
+ "query6293"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CreateListUpdateDelete.json
index 3a974b3db49b1..4593ee411f4b3 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "a95165c9-7ced-4e62-9ee9-78975ad9a641"
+ "f4aac4da-5d87-4045-9fbc-aff46cce1f46"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:16 GMT"
+ "Fri, 09 Mar 2018 19:36:08 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ad8a4961-d121-4251-b73c-1d9356de5ad6",
- "427d1c65-ca51-4942-9cbc-0c766fef0b98"
+ "a6e3f962-e55e-4f66-880f-a3d61764f33e",
+ "d38cf9ab-7fd0-4f1c-9827-e511767f416b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "1ad1436a-0707-4714-8a19-a58a24487bd2"
+ "b6868e89-9005-4d1d-b050-e0a858db590b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235316Z:1ad1436a-0707-4714-8a19-a58a24487bd2"
+ "WESTUS2:20180309T193609Z:b6868e89-9005-4d1d-b050-e0a858db590b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea4e0229-30f8-4d27-ba02-68abfa1a573c"
+ "15507088-92d4-4397-ba41-765f7639b95b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:16 GMT"
+ "Fri, 09 Mar 2018 19:36:08 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0cd25c78-eb42-4eae-9825-6776cdfde023"
+ "5dc9c93d-5d23-496a-8990-023316216eec"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "9029358f-da58-4eeb-9313-47747beef915"
+ "e67dae86-ab96-4da2-af33-054ffa2f9c95"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235316Z:9029358f-da58-4eeb-9313-47747beef915"
+ "WESTUS2:20180309T193609Z:e67dae86-ab96-4da2-af33-054ffa2f9c95"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "922fe633-e290-4f77-8f6d-1127b8eb8533"
+ "eedca91a-eb75-4dd7-ac6c-5ecbcb1b12ce"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"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 \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:17 GMT"
+ "Fri, 09 Mar 2018 19:36:08 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3b21c490-06d2-437c-9488-c9ae632bbded"
+ "82dc7b29-85d5-4b68-ad9f-eb37fe2149bb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "869666df-c499-4972-a93c-7af44d841437"
+ "09a3e646-954b-4e4c-90d4-afe74918fbe3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235317Z:869666df-c499-4972-a93c-7af44d841437"
+ "WESTUS2:20180309T193609Z:09a3e646-954b-4e4c-90d4-afe74918fbe3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a525991d-4ce9-425a-81cf-6b87c2388078"
+ "57a871d4-0489-47b7-8898-0a5af53fc474"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:17 GMT"
+ "Fri, 09 Mar 2018 19:36:10 GMT"
],
"Pragma": [
"no-cache"
@@ -234,7 +243,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAD78=\""
+ "\"AAAAAAAAN1A=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -246,25 +255,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "666201e3-d53a-4818-bcd8-751c00fa1f70"
+ "aadda02c-5cdb-442b-b136-e4e7c892987f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "c716e7bc-d149-49d1-b771-9a41b6b65ac0"
+ "77f43abf-1f1c-48ba-a876-e23d30b9b2d2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235317Z:c716e7bc-d149-49d1-b771-9a41b6b65ac0"
+ "WESTUS2:20180309T193610Z:77f43abf-1f1c-48ba-a876-e23d30b9b2d2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId6481?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ2NDgxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId6383?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ2MzgzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"defaultScope\": \"oauth2scope5972\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName8978\",\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 ],\r\n \"clientId\": \"clientid9574\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"authorizationMethods\": [\r\n \"POST\",\r\n \"GET\"\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"defaultScope\": \"oauth2scope8568\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"displayName\": \"authName1666\",\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 ],\r\n \"clientId\": \"clientid7616\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -273,17 +285,17 @@
"546"
],
"x-ms-client-request-id": [
- "218159e7-4919-4861-ab5e-83421d96774a"
+ "f42b39af-6e50-46e0-8fa9-7b21841628b4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId6481\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId6481\",\r\n \"properties\": {\r\n \"displayName\": \"authName8978\",\r\n \"description\": null,\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\": null,\r\n \"tokenBodyParameters\": null,\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"oauth2scope5972\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid9574\",\r\n \"clientSecret\": null,\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId6383\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authorizationServerId6383\",\r\n \"properties\": {\r\n \"displayName\": \"authName1666\",\r\n \"description\": null,\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\": null,\r\n \"tokenBodyParameters\": null,\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": false,\r\n \"defaultScope\": \"oauth2scope8568\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"implicit\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid7616\",\r\n \"clientSecret\": null,\r\n \"resourceOwnerUsername\": null,\r\n \"resourceOwnerPassword\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1086"
@@ -298,13 +310,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:18 GMT"
+ "Fri, 09 Mar 2018 19:36:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM9o=\""
+ "\"AAAAAAAAODA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,25 +325,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84c1d4e4-65d3-4675-98f3-b4879161f3fe"
+ "cfc29b0d-3c40-46be-9a18-b2fbdca96651"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "4017596c-d08f-4605-8e3c-4ba0d67ba8b6"
+ "39c8c433-d032-4da4-a914-338ccd756445"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235318Z:4017596c-d08f-4605-8e3c-4ba0d67ba8b6"
+ "WESTUS2:20180309T193611Z:39c8c433-d032-4da4-a914-338ccd756445"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription3827\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6481\",\r\n \"scope\": \"oauth2scope5400\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4300\",\r\n \"query\": \"query9702\"\r\n },\r\n \"displayName\": \"apiname5822\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"apidescription6568\",\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6383\",\r\n \"scope\": \"oauth2scope9223\"\r\n }\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1049\",\r\n \"query\": \"query6822\"\r\n },\r\n \"displayName\": \"apiname1734\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -340,20 +355,20 @@
"521"
],
"x-ms-client-request-id": [
- "21a8971b-2fa5-4fa4-a9ef-d6da753d0c62"
+ "445e3d8e-aed5-40a2-bc87-f5eb1b6e879f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7602\",\r\n \"properties\": {\r\n \"displayName\": \"apiname5822\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3827\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6481\",\r\n \"scope\": \"oauth2scope5400\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4300\",\r\n \"query\": \"query9702\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid167\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1734\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription6568\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6383\",\r\n \"scope\": \"oauth2scope9223\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1049\",\r\n \"query\": \"query6822\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "841"
+ "839"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -365,13 +380,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:18 GMT"
+ "Fri, 09 Mar 2018 19:36:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM9s=\""
+ "\"AAAAAAAAODE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -380,38 +395,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "07d8441f-c54c-4335-b095-a91b44e06192"
+ "8bbc3560-d8ec-4cab-9dae-e177695d36a4"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "fc6c9578-7a3f-4cc4-9687-399775c0f1ca"
+ "4b37a179-9371-4b4d-b9f9-5fcdf910dd5a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235318Z:fc6c9578-7a3f-4cc4-9687-399775c0f1ca"
+ "WESTUS2:20180309T193611Z:4b37a179-9371-4b4d-b9f9-5fcdf910dd5a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a370a2e-7f8f-4229-b7b1-9bf25012fdb4"
+ "ca35c7bd-3726-4d09-ad61-50e544b97e81"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7602\",\r\n \"properties\": {\r\n \"displayName\": \"apiname5822\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription3827\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6481\",\r\n \"scope\": \"oauth2scope5400\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header4300\",\r\n \"query\": \"query9702\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid167\",\r\n \"properties\": {\r\n \"displayName\": \"apiname1734\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"apidescription6568\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"newapiPath\",\r\n \"protocols\": [\r\n \"http\",\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": {\r\n \"authorizationServerId\": \"authorizationServerId6383\",\r\n \"scope\": \"oauth2scope9223\"\r\n },\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"header1049\",\r\n \"query\": \"query6822\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -423,7 +441,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:18 GMT"
+ "Fri, 09 Mar 2018 19:36:11 GMT"
],
"Pragma": [
"no-cache"
@@ -432,7 +450,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM9s=\""
+ "\"AAAAAAAAODE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -444,38 +462,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b574587f-80b8-4ec7-8863-c5e5a6ba6c39"
+ "8c90c073-e58a-4d0b-8720-c64b993e301a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "d2a3c9d0-315e-4028-ac90-b62f1764b1b1"
+ "49415ea7-92ca-4d69-a00f-101763b096c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235318Z:d2a3c9d0-315e-4028-ac90-b62f1764b1b1"
+ "WESTUS2:20180309T193611Z:49415ea7-92ca-4d69-a00f-101763b096c7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e6831dc-878f-4c52-90f5-fff76706e9c5"
+ "352e45a9-ec0b-4b8f-96dc-5164205c142b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7602\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname533\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription2545\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath2414\",\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\": \"header4300\",\r\n \"query\": \"query9702\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid167\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname2786\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription6460\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath9733\",\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\": \"header1049\",\r\n \"query\": \"query6822\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -487,7 +508,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:21 GMT"
+ "Fri, 09 Mar 2018 19:36:14 GMT"
],
"Pragma": [
"no-cache"
@@ -496,7 +517,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM90=\""
+ "\"AAAAAAAAODM=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -508,35 +529,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "59b871f9-b002-4af5-992f-372d24f4355b"
+ "d5593b9e-f7bf-49ae-8e62-22a7c12ab642"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "4f4416e6-5888-423e-9ead-603a853ec07a"
+ "d8f3d2c4-efe0-4769-8d88-47e822abe879"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235321Z:4f4416e6-5888-423e-9ead-603a853ec07a"
+ "WESTUS2:20180309T193614Z:d8f3d2c4-efe0-4769-8d88-47e822abe879"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3fea022-b5d9-43e6-8bc0-d90dba3b13fb"
+ "6608f90c-97af-4528-8cf5-6ef05384a816"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Api not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -554,7 +578,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:22 GMT"
+ "Fri, 09 Mar 2018 19:36:15 GMT"
],
"Pragma": [
"no-cache"
@@ -566,35 +590,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4458f69a-91af-40d3-b870-bbedd9d0ff76"
+ "85c6f457-29c0-4602-9fac-4b55c2704261"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14991"
],
"x-ms-correlation-request-id": [
- "54a6bea9-dad9-4e85-afa4-2cd68cd424c7"
+ "d13b03b0-1f4c-4948-8d2d-c1ab124bbf4c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235322Z:54a6bea9-dad9-4e85-afa4-2cd68cd424c7"
+ "WESTUS2:20180309T193615Z:d13b03b0-1f4c-4948-8d2d-c1ab124bbf4c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6e96cfd-0f7b-4151-b243-6a46f924f97a"
+ "2d305fec-64a4-4311-947b-64a5021b37a4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -609,13 +636,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:18 GMT"
+ "Fri, 09 Mar 2018 19:36:12 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM9s=\""
+ "\"AAAAAAAAODE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -624,44 +651,47 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "abdd32d7-9d15-46ce-b4b0-d349478ecb41"
+ "025af476-28fc-4ed4-a7d2-831bde0c92fc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "a2d47452-5ac2-465b-9cee-07ee816febcc"
+ "b7cb507c-a1cc-4bd7-9071-a346e670f7d4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235318Z:a2d47452-5ac2-465b-9cee-07ee816febcc"
+ "WESTUS2:20180309T193612Z:b7cb507c-a1cc-4bd7-9071-a346e670f7d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription2545\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname533\",\r\n \"path\": \"patchedPath2414\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription6460\",\r\n \"authenticationSettings\": {},\r\n \"displayName\": \"patchedname2786\",\r\n \"path\": \"patchedPath9733\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "178"
+ "179"
],
"x-ms-client-request-id": [
- "aec6baa5-1e6d-447d-aa77-b1b8e117347e"
+ "3d87f2ce-80c7-4c54-a2b6-15a435f36b6e"
],
"If-Match": [
- "\"AAAAAAAAM9s=\""
+ "\"AAAAAAAAODE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -673,7 +703,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:21 GMT"
+ "Fri, 09 Mar 2018 19:36:14 GMT"
],
"Pragma": [
"no-cache"
@@ -685,16 +715,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ca2b7652-c018-49ff-b51b-4001fe1cd0a0"
+ "d23d2280-490e-4308-b8f1-06d7718ad8c3"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "df8d8cad-473f-428e-8dcd-4685fed7585c"
+ "9a8f55c0-b494-403e-988b-b7a3db0fa3ce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235321Z:df8d8cad-473f-428e-8dcd-4685fed7585c"
+ "WESTUS2:20180309T193614Z:9a8f55c0-b494-403e-988b-b7a3db0fa3ce"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -706,14 +739,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c94ba9f5-6429-4a3d-8b99-4183f5156bc9"
+ "3a1331ee-31e8-4373-8a9c-422ef9307d51"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"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 \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis?%24top=1&api-version=2018-01-01&expandApiVersionSet=false&%24skip=1\"\r\n}",
@@ -728,7 +761,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:21 GMT"
+ "Fri, 09 Mar 2018 19:36:14 GMT"
],
"Pragma": [
"no-cache"
@@ -746,16 +779,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03fb0701-4245-435e-8a40-73679e412168"
+ "c7134e6f-54f5-490b-a51b-9436c0ceb5e0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14993"
],
"x-ms-correlation-request-id": [
- "fba544b1-9fcb-4dd0-ae94-3f7d73a0835b"
+ "87136f3b-9de9-42bc-b496-fed861f09fe0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235321Z:fba544b1-9fcb-4dd0-ae94-3f7d73a0835b"
+ "WESTUS2:20180309T193614Z:87136f3b-9de9-42bc-b496-fed861f09fe0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -767,17 +803,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5bdc5d1-7994-421d-a8aa-fc8bc85317b0"
+ "72c69984-9412-41c7-bcbd-2cd79aece508"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid7602\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname533\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription2545\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath2414\",\r\n \"protocols\": [\r\n \"http\",\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 \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"apiid167\",\r\n \"properties\": {\r\n \"displayName\": \"patchedname2786\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"patchedDescription6460\",\r\n \"serviceUrl\": \"http://newechoapi.cloudapp.net/api\",\r\n \"path\": \"patchedPath9733\",\r\n \"protocols\": [\r\n \"http\",\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 \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -789,7 +825,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:22 GMT"
+ "Fri, 09 Mar 2018 19:36:14 GMT"
],
"Pragma": [
"no-cache"
@@ -807,28 +843,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c13128e9-567f-4ac5-9847-9fcc9b0eba07"
+ "8d28f94b-da90-4170-a01f-dd34f044601b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14992"
],
"x-ms-correlation-request-id": [
- "d82d69f2-315a-4e53-953e-96d3c8117610"
+ "18cf52a1-094b-4e78-9436-0d3469d197a9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235322Z:d82d69f2-315a-4e53-953e-96d3c8117610"
+ "WESTUS2:20180309T193614Z:18cf52a1-094b-4e78-9436-0d3469d197a9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac62684d-c3bf-4b4e-9313-f5d84a82b186"
+ "8dca2925-6fba-4cd8-8fcb-d37a5507eb13"
],
"If-Match": [
"*"
@@ -838,7 +877,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -853,7 +892,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:22 GMT"
+ "Fri, 09 Mar 2018 19:36:15 GMT"
],
"Pragma": [
"no-cache"
@@ -865,28 +904,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ec8890bf-c34d-4455-b458-aa516c27fbc5"
+ "315d90e5-8bea-446e-9651-f9de19d07231"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "6871b381-5548-47aa-bbb4-cb257752b18b"
+ "6a5db37d-4aec-4d7c-9481-bc126d6e3ee5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235322Z:6871b381-5548-47aa-bbb4-cb257752b18b"
+ "WESTUS2:20180309T193615Z:6a5db37d-4aec-4d7c-9481-bc126d6e3ee5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid7602?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkNzYwMj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/apiid167?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2FwaWlkMTY3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3bc928aa-e9ae-48a6-a957-fd1e0f337433"
+ "cc314895-90f0-4fb5-b57b-e1ae293d7cff"
],
"If-Match": [
"*"
@@ -896,7 +938,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -908,7 +950,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:25 GMT"
+ "Fri, 09 Mar 2018 19:36:15 GMT"
],
"Pragma": [
"no-cache"
@@ -920,28 +962,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8ccc27db-f924-4265-b90b-a6e60f89e85c"
+ "dfd1e084-c83f-4f7b-bdc9-6107e1a00aa1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "56722ec4-7389-4e93-af50-ba252f9a4e62"
+ "62faf8b5-7680-4584-aeb8-a23e479dbe64"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235325Z:56722ec4-7389-4e93-af50-ba252f9a4e62"
+ "WESTUS2:20180309T193615Z:62faf8b5-7680-4584-aeb8-a23e479dbe64"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId6481?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ2NDgxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authorizationServerId6383?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRob3JpemF0aW9uU2VydmVySWQ2MzgzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e5fa66a-e439-46b7-94f2-a970ed12819d"
+ "57854ae8-58b4-46ba-ade9-78d86c2873d8"
],
"If-Match": [
"*"
@@ -951,7 +996,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -966,7 +1011,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:53:25 GMT"
+ "Fri, 09 Mar 2018 19:36:16 GMT"
],
"Pragma": [
"no-cache"
@@ -978,16 +1023,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5d7f63d5-7599-4b09-a56a-db8eac88ad96"
+ "d299647b-c8dd-40bf-9be2-379e85633029"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "5c794b43-0326-4fd7-8d6e-9bdbb6447507"
+ "160011d5-c40f-4a85-8db9-82cb40dbd4ae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235326Z:5c794b43-0326-4fd7-8d6e-9bdbb6447507"
+ "WESTUS2:20180309T193616Z:160011d5-c40f-4a85-8db9-82cb40dbd4ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -995,19 +1043,19 @@
],
"Names": {
"CreateListUpdateDelete": [
- "authorizationServerId6481",
- "apiid7602",
- "authName8978",
- "oauth2scope5972",
- "clientid9574",
- "apiname5822",
- "apidescription3827",
- "header4300",
- "query9702",
- "oauth2scope5400",
- "patchedname533",
- "patchedDescription2545",
- "patchedPath2414"
+ "authorizationServerId6383",
+ "apiid167",
+ "authName1666",
+ "oauth2scope8568",
+ "clientid7616",
+ "apiname1734",
+ "apidescription6568",
+ "header1049",
+ "query6822",
+ "oauth2scope9223",
+ "patchedname2786",
+ "patchedDescription6460",
+ "patchedPath9733"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiVersionSetTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiVersionSetTests/CreateListUpdateDelete.json
index 0d3cb03f4db2d..a9d5c74cd7cef 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiVersionSetTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ApiVersionSetTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "5bb4c25e-f202-4c76-b2ee-f48c09238dba"
+ "9b5711bb-136d-491b-a244-a2917e137475"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:08:52 GMT"
+ "Fri, 09 Mar 2018 21:46:36 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e304295-e326-4bf8-a722-7d8ee57b8d99",
- "74a7a5a3-912f-4ce4-81cb-a74d5eefd08a"
+ "aabfdebd-9f96-48a3-ad44-96316a053b4c",
+ "f2a45e9b-c8e5-467a-8e02-a626bd5ea3cb"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "412d7723-3252-4a4e-9473-ad6241c261d6"
+ "8fdc3726-8448-48a5-a2ae-fcfb17fd3fb0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190853Z:412d7723-3252-4a4e-9473-ad6241c261d6"
+ "WESTUS2:20180309T214636Z:8fdc3726-8448-48a5-a2ae-fcfb17fd3fb0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "51c61df5-0c26-4888-bf70-51895488ad7c"
+ "2210bae0-d24b-463d-9d11-90ef50db40bb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:08:53 GMT"
+ "Fri, 09 Mar 2018 21:46:36 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "20c05436-fdc8-4c00-ad25-48a74ba8ea09"
+ "302d7145-7f1c-44e9-81c4-6b9bdc13db46"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "822ab78d-cfad-4656-bfec-ca54cf9830da"
+ "ef9ec7cd-1954-4ecb-bd28-0cdd286c6907"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190853Z:822ab78d-cfad-4656-bfec-ca54cf9830da"
+ "WESTUS2:20180309T214636Z:ef9ec7cd-1954-4ecb-bd28-0cdd286c6907"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93f4b108-d65e-4a52-bf7f-a425a2ca1bf5"
+ "4508ded3-11cd-4d4b-b447-9bf04111af28"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:08:53 GMT"
+ "Fri, 09 Mar 2018 21:46:36 GMT"
],
"Pragma": [
"no-cache"
@@ -188,16 +188,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3acb9990-c671-4271-82cb-ce23391ff1ab"
+ "fbc7a4c7-e9b0-44a9-9685-0f2fe8acb584"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "6012e971-50f6-40e0-bcbe-09b6f015155c"
+ "ff7f5958-17ba-4f28-bde6-3e6159646850"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190854Z:6012e971-50f6-40e0-bcbe-09b6f015155c"
+ "WESTUS2:20180309T214636Z:ff7f5958-17ba-4f28-bde6-3e6159646850"
],
"X-Content-Type-Options": [
"nosniff"
@@ -206,32 +206,32 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"versionsetdescript8899\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\",\r\n \"displayName\": \"versionset7328\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"versionsetdescript6810\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\",\r\n \"displayName\": \"versionset681\",\r\n \"versioningScheme\": \"Header\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "192"
+ "191"
],
"x-ms-client-request-id": [
- "b648317e-5095-4b85-946a-429c7f4ca874"
+ "d9f0a641-69c4-4ece-9af5-48630ec47533"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211\",\r\n \"type\": \"Microsoft.ApiManagement/service/api-version-sets\",\r\n \"name\": \"apiversionsetid2211\",\r\n \"properties\": {\r\n \"displayName\": \"versionset7328\",\r\n \"description\": \"versionsetdescript8899\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425\",\r\n \"type\": \"Microsoft.ApiManagement/service/api-version-sets\",\r\n \"name\": \"apiversionsetid5425\",\r\n \"properties\": {\r\n \"displayName\": \"versionset681\",\r\n \"description\": \"versionsetdescript6810\",\r\n \"versioningScheme\": \"Header\",\r\n \"versionQueryName\": null,\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "515"
+ "514"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -243,13 +243,13 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:08:54 GMT"
+ "Fri, 09 Mar 2018 21:46:37 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANv8=\""
+ "\"AAAAAAAAOTA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -258,16 +258,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5686c504-17a1-4d4b-90c1-ba47ceacc283"
+ "03f600aa-d839-430f-a150-78e4a3aec3be"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "d7ad0fdd-465b-4e72-96eb-df106433077c"
+ "ed65f6d6-70d8-441f-a468-d3509611f1fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190854Z:d7ad0fdd-465b-4e72-96eb-df106433077c"
+ "WESTUS2:20180309T214637Z:ed65f6d6-70d8-441f-a468-d3509611f1fd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -276,20 +276,20 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de171e93-7726-4fdd-a5f1-e59592b69d78"
+ "44cac95e-8bd9-4dcf-8f65-8254d2cb0046"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -304,13 +304,13 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:09:21 GMT"
+ "Fri, 09 Mar 2018 21:46:37 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANv8=\""
+ "\"AAAAAAAAOTA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,16 +319,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1a4226d-b602-496a-a3f2-cb423f86956b"
+ "4ee75757-1b1e-4e6a-bd76-e26918a60b85"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "7904a4fd-fe6d-4cab-80a0-ec93e500a538"
+ "dfdce30c-6023-4db3-89c4-5b4e3e89e575"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190922Z:7904a4fd-fe6d-4cab-80a0-ec93e500a538"
+ "WESTUS2:20180309T214638Z:dfdce30c-6023-4db3-89c4-5b4e3e89e575"
],
"X-Content-Type-Options": [
"nosniff"
@@ -337,20 +337,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c319745-52f5-4414-9dc0-20a0cad49259"
+ "77faa20b-b909-484c-a0f2-cae837d52279"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -365,13 +365,13 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:10:00 GMT"
+ "Fri, 09 Mar 2018 21:46:38 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANwE=\""
+ "\"AAAAAAAAOTE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -380,16 +380,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "14d89dab-ce88-48fc-a5b7-e16dd92d8d1a"
+ "35b6c090-f6ae-4dd3-bc1d-9090ffc9f6b8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "e14a999b-6089-4aff-ae36-365b9c88d594"
+ "c4c988c9-c91e-4563-9959-9ac581fc4e18"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T191000Z:e14a999b-6089-4aff-ae36-365b9c88d594"
+ "WESTUS2:20180309T214638Z:c4c988c9-c91e-4563-9959-9ac581fc4e18"
],
"X-Content-Type-Options": [
"nosniff"
@@ -398,8 +398,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versioningScheme\": \"Query\"\r\n }\r\n}",
"RequestHeaders": {
@@ -410,17 +410,17 @@
"106"
],
"x-ms-client-request-id": [
- "06f700b0-81c6-4889-9a44-9f75896f4b24"
+ "bc92fa96-f320-4e1f-aa56-dddd9584cd29"
],
"If-Match": [
- "\"AAAAAAAANv8=\""
+ "\"AAAAAAAAOTA=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -432,7 +432,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:09:35 GMT"
+ "Fri, 09 Mar 2018 21:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -444,16 +444,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "83e87584-917a-4463-9b9a-cdb1d6fcc918"
+ "46c8e361-a781-44a1-8476-890e611d7063"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "27acb7f8-b578-4de7-b226-751121dc94f2"
+ "1b535cb1-bd93-4106-85e5-769d33bb2fb0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190936Z:27acb7f8-b578-4de7-b226-751121dc94f2"
+ "WESTUS2:20180309T214638Z:1b535cb1-bd93-4106-85e5-769d33bb2fb0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -462,23 +462,23 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1eb4c0c8-813a-4445-a173-d84ea74e78dc"
+ "835bd881-4a65-4671-9c67-4e376e0f1785"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211\",\r\n \"type\": \"Microsoft.ApiManagement/service/api-version-sets\",\r\n \"name\": \"apiversionsetid2211\",\r\n \"properties\": {\r\n \"displayName\": \"versionset7328\",\r\n \"description\": \"versionsetdescript8899\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425\",\r\n \"type\": \"Microsoft.ApiManagement/service/api-version-sets\",\r\n \"name\": \"apiversionsetid5425\",\r\n \"properties\": {\r\n \"displayName\": \"versionset681\",\r\n \"description\": \"versionsetdescript6810\",\r\n \"versioningScheme\": \"Query\",\r\n \"versionQueryName\": \"x-ms-sdk-version\",\r\n \"versionHeaderName\": \"x-ms-sdk-version\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -490,7 +490,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:09:37 GMT"
+ "Fri, 09 Mar 2018 21:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -499,7 +499,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANwE=\""
+ "\"AAAAAAAAOTE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -511,16 +511,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1b8ffa3f-9891-48b2-93d6-1fbd83970ad4"
+ "b2bd47da-d01c-4219-af7c-d4f2759e328c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "a71b5d87-b793-4fc6-86ac-bf04dfbbb2b9"
+ "db57bf4b-8bc7-41e5-9096-3091bcfc7f45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T190937Z:a71b5d87-b793-4fc6-86ac-bf04dfbbb2b9"
+ "WESTUS2:20180309T214638Z:db57bf4b-8bc7-41e5-9096-3091bcfc7f45"
],
"X-Content-Type-Options": [
"nosniff"
@@ -529,20 +529,20 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8db0c27-f516-441a-8582-9f7384948840"
+ "a1476cff-ebd5-46d2-9cb2-36713e66f838"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Api-version-set not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -560,7 +560,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:10:11 GMT"
+ "Fri, 09 Mar 2018 21:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -572,16 +572,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5affff44-a4ee-4b75-b643-80c15655b1f1"
+ "b85244a4-8ffe-4ed3-b4e1-dd34735a631b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "3f142cc0-9e46-40dc-a0b9-0b51cec69640"
+ "9c4bb5fe-ff46-419f-9ae4-69232555a04b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T191011Z:3f142cc0-9e46-40dc-a0b9-0b51cec69640"
+ "WESTUS2:20180309T214639Z:9c4bb5fe-ff46-419f-9ae4-69232555a04b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -590,23 +590,23 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c7a7bd6-8e4e-454e-b128-bd4c73081978"
+ "6295b455-b997-4fc7-8b89-e831e05c11bb"
],
"If-Match": [
- "\"AAAAAAAANwE=\""
+ "\"AAAAAAAAOTE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -621,7 +621,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:10:07 GMT"
+ "Fri, 09 Mar 2018 21:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -633,16 +633,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea75077a-11b8-451d-a4ee-201d28c909f0"
+ "50dbafd0-f595-47e8-bea2-634dcceec2b9"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "55da99e6-00d8-4aff-a1ba-e89cd68a671d"
+ "98df0376-6051-4986-9214-8054a79ef3e7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T191007Z:55da99e6-00d8-4aff-a1ba-e89cd68a671d"
+ "WESTUS2:20180309T214638Z:98df0376-6051-4986-9214-8054a79ef3e7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -651,13 +651,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid2211?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDIyMTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/api-version-sets/apiversionsetid5425?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGktdmVyc2lvbi1zZXRzL2FwaXZlcnNpb25zZXRpZDU0MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6daa9f3-8a7c-4997-8f4e-5b0a417144e7"
+ "58ae9f7f-f150-49d4-868c-878e1007f939"
],
"If-Match": [
"*"
@@ -667,7 +667,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -679,7 +679,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 19:10:49 GMT"
+ "Fri, 09 Mar 2018 21:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -691,16 +691,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1e71119d-f75f-4aee-b5c5-0545c788a787"
+ "d92b404f-6e0e-49f7-82ca-3f120e7d6100"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "7bf3b713-860b-4cd9-9bac-bd54aea97ef4"
+ "20ae9b1c-cf17-453e-bced-d99bc695d648"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T191049Z:7bf3b713-860b-4cd9-9bac-bd54aea97ef4"
+ "WESTUS2:20180309T214639Z:20ae9b1c-cf17-453e-bced-d99bc695d648"
],
"X-Content-Type-Options": [
"nosniff"
@@ -711,9 +711,9 @@
],
"Names": {
"CreateListUpdateDelete": [
- "apiversionsetid2211",
- "versionset7328",
- "versionsetdescript8899"
+ "apiversionsetid5425",
+ "versionset681",
+ "versionsetdescript6810"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.AuthorizationServerTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.AuthorizationServerTests/CreateListUpdateDelete.json
index 77c6a780703b0..168cdea3c4e59 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.AuthorizationServerTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.AuthorizationServerTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "68e0e912-ddf4-4bfa-ae56-26777150f01a"
+ "26cf0dfb-aa5b-4078-8e47-9b12b0cfe19e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:49 GMT"
+ "Fri, 09 Mar 2018 19:50:37 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9500d8f0-5223-474e-812d-43ad49dbe068",
- "7fd9c1ab-dc90-40a1-80d3-6a1b90c013f9"
+ "21667874-d0a9-4ebf-9823-272014b84215",
+ "b60f1661-2196-488b-ab72-af7b2254535a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1183"
],
"x-ms-correlation-request-id": [
- "16b6cae4-3f59-41b5-a9bd-80a4058c2d0f"
+ "0986c327-8a71-41ca-ae06-1a55d3957142"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021450Z:16b6cae4-3f59-41b5-a9bd-80a4058c2d0f"
+ "WESTUS2:20180309T195037Z:0986c327-8a71-41ca-ae06-1a55d3957142"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "056d723b-4144-4105-b913-4195c9d690dc"
+ "7362f536-931d-418d-a31f-dc67a92fbb0f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:50 GMT"
+ "Fri, 09 Mar 2018 19:50:37 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1b20c77b-f38d-4006-b24d-7f5fefe89f67"
+ "425c63aa-4aa8-4c7a-8d75-8d6d8490fd64"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14974"
],
"x-ms-correlation-request-id": [
- "eb2bad99-6173-40a0-aecf-a2b692e70bb0"
+ "de1d3ef5-b296-4916-98c2-4738c0f2c19e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021450Z:eb2bad99-6173-40a0-aecf-a2b692e70bb0"
+ "WESTUS2:20180309T195037Z:de1d3ef5-b296-4916-98c2-4738c0f2c19e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62396212-ae91-4e5d-94f5-c88de996a416"
+ "ce194257-b25d-40c3-9719-1ca0bd482448"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:50 GMT"
+ "Fri, 09 Mar 2018 19:50:37 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fe2f3c0b-2867-4c39-83e7-5c2d4e94ec85"
+ "3702b266-829c-42ce-94ce-dc48867b35bd"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14973"
],
"x-ms-correlation-request-id": [
- "a5441ba4-e380-4d28-8c3d-133505a88481"
+ "28d3d75c-448d-4e2d-bb58-6de09e833428"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021450Z:a5441ba4-e380-4d28-8c3d-133505a88481"
+ "WESTUS2:20180309T195038Z:28d3d75c-448d-4e2d-bb58-6de09e833428"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,17 +212,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8042216-4cb5-4853-a2b3-a7a2a79d7a43"
+ "5ecba98c-265c-47a1-ad3d-b7bd2741d81e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6308\",\r\n \"properties\": {\r\n \"displayName\": \"authName3724\",\r\n \"description\": \"authdescription5757\",\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\": \"tokenname172\",\r\n \"value\": \"tokenvalue373\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope334\",\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\": \"clientid7105\",\r\n \"clientSecret\": \"authclientsecret7765\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername4734\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd831\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid7608\",\r\n \"properties\": {\r\n \"displayName\": \"authName8442\",\r\n \"description\": \"authdescription846\",\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\": \"tokenname7255\",\r\n \"value\": \"tokenvalue5855\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7414\",\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\": \"clientid9482\",\r\n \"clientSecret\": \"authclientsecret5100\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername2909\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2066\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:51 GMT"
+ "Fri, 09 Mar 2018 19:50:38 GMT"
],
"Pragma": [
"no-cache"
@@ -243,47 +252,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "01d5dddc-2bc7-48e8-9588-1b6f2c5a64ce"
+ "4193cb5f-ec5f-4440-9f21-f78fdbd100e2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14971"
],
"x-ms-correlation-request-id": [
- "a3573ef5-a419-4abe-b458-0cc8111691d9"
+ "1cbe8df0-70f6-4f4b-918b-878225c147e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021452Z:a3573ef5-a419-4abe-b458-0cc8111691d9"
+ "WESTUS2:20180309T195038Z:1cbe8df0-70f6-4f4b-918b-878225c147e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription5757\",\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\": \"tokenname172\",\r\n \"value\": \"tokenvalue373\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope334\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientSecret\": \"authclientsecret7765\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername4734\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd831\",\r\n \"displayName\": \"authName3724\",\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\": \"clientid7105\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"authdescription846\",\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\": \"tokenname7255\",\r\n \"value\": \"tokenvalue5855\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7414\",\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientSecret\": \"authclientsecret5100\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername2909\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2066\",\r\n \"displayName\": \"authName8442\",\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\": \"clientid9482\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "995"
+ "998"
],
"x-ms-client-request-id": [
- "4d2e1f01-ab0b-4bc2-a8f4-0171f1043068"
+ "45ed6411-af7f-4bff-88ee-2651b4b2109b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6308\",\r\n \"properties\": {\r\n \"displayName\": \"authName3724\",\r\n \"description\": \"authdescription5757\",\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\": \"tokenname172\",\r\n \"value\": \"tokenvalue373\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope334\",\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\": \"clientid7105\",\r\n \"clientSecret\": \"authclientsecret7765\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername4734\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd831\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid7608\",\r\n \"properties\": {\r\n \"displayName\": \"authName8442\",\r\n \"description\": \"authdescription846\",\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\": \"tokenname7255\",\r\n \"value\": \"tokenvalue5855\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7414\",\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\": \"clientid9482\",\r\n \"clientSecret\": \"authclientsecret5100\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername2909\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2066\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1279"
+ "1282"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -295,13 +307,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:51 GMT"
+ "Fri, 09 Mar 2018 19:50:38 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANMU=\""
+ "\"AAAAAAAAOLo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -310,38 +322,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac27158f-5ab8-4119-8da5-d0f217f4633e"
+ "f798775c-dca7-4eeb-9495-d0178388637a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1182"
],
"x-ms-correlation-request-id": [
- "186042ae-b482-466d-b3cf-699b8d7ad61d"
+ "7379f7ad-91ad-43a0-a87b-134474c0b95c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021451Z:186042ae-b482-466d-b3cf-699b8d7ad61d"
+ "WESTUS2:20180309T195038Z:7379f7ad-91ad-43a0-a87b-134474c0b95c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "611ede9f-de8b-4804-8b82-13d99b119f66"
+ "59a47ddf-bce1-4b3a-9c33-fecfb1c44925"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6308\",\r\n \"properties\": {\r\n \"displayName\": \"authName3724\",\r\n \"description\": \"authdescription5757\",\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\": \"tokenname172\",\r\n \"value\": \"tokenvalue373\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope334\",\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\": \"clientid7105\",\r\n \"clientSecret\": \"authclientsecret7765\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername4734\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd831\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid7608\",\r\n \"properties\": {\r\n \"displayName\": \"authName8442\",\r\n \"description\": \"authdescription846\",\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\": \"tokenname7255\",\r\n \"value\": \"tokenvalue5855\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7414\",\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\": \"clientid9482\",\r\n \"clientSecret\": \"authclientsecret5100\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername2909\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2066\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -353,7 +368,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:51 GMT"
+ "Fri, 09 Mar 2018 19:50:38 GMT"
],
"Pragma": [
"no-cache"
@@ -362,7 +377,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANMU=\""
+ "\"AAAAAAAAOLo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -374,38 +389,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0e2eecc9-9fdf-4add-b30c-37c09a507772"
+ "3ada23e0-12c6-4353-be4d-9f74047d3867"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14972"
],
"x-ms-correlation-request-id": [
- "223f359c-6a68-402e-91c9-a781b3a1cc8d"
+ "278dbaad-6708-4c42-ab84-f2ef0d6ffe63"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021451Z:223f359c-6a68-402e-91c9-a781b3a1cc8d"
+ "WESTUS2:20180309T195038Z:278dbaad-6708-4c42-ab84-f2ef0d6ffe63"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "afd1dade-1928-486f-a937-ae3d0d4ed0a6"
+ "ca85d6b4-fa8c-4c2a-afe5-ad3844bdf2e1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid6308\",\r\n \"properties\": {\r\n \"displayName\": \"authName3724\",\r\n \"description\": \"authdescription5757\",\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\": \"tokenname172\",\r\n \"value\": \"tokenvalue373\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope334\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid7105\",\r\n \"clientSecret\": \"authclientsecret7765\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername4734\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd831\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608\",\r\n \"type\": \"Microsoft.ApiManagement/service/authorizationServers\",\r\n \"name\": \"authsid7608\",\r\n \"properties\": {\r\n \"displayName\": \"authName8442\",\r\n \"description\": \"authdescription846\",\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\": \"tokenname7255\",\r\n \"value\": \"tokenvalue5855\"\r\n }\r\n ],\r\n \"tokenEndpoint\": \"https://contoso.com/token\",\r\n \"supportState\": true,\r\n \"defaultScope\": \"oauth2scope7414\",\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ],\r\n \"bearerTokenSendingMethods\": [\r\n \"authorizationHeader\",\r\n \"query\"\r\n ],\r\n \"clientId\": \"clientid9482\",\r\n \"clientSecret\": \"authclientsecret5100\",\r\n \"resourceOwnerUsername\": \"authresourceownerusername2909\",\r\n \"resourceOwnerPassword\": \"authresourceownerpwd2066\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -417,7 +435,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:51 GMT"
+ "Fri, 09 Mar 2018 19:50:39 GMT"
],
"Pragma": [
"no-cache"
@@ -426,7 +444,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANMY=\""
+ "\"AAAAAAAAOLs=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,35 +456,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "11b88c65-4dc6-421d-b75a-77818bcf38a6"
+ "0f6f9ac9-fe29-4cec-82cf-7e15e84e21de"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14970"
],
"x-ms-correlation-request-id": [
- "06e6a01c-d81d-4af3-9214-2ec4a2716a87"
+ "494f4e5e-eb96-460a-be47-0a9b12f3ed72"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021452Z:06e6a01c-d81d-4af3-9214-2ec4a2716a87"
+ "WESTUS2:20180309T195039Z:494f4e5e-eb96-460a-be47-0a9b12f3ed72"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "adf50bca-636d-4654-a627-1f764baf9139"
+ "53c71b0f-fc7b-4233-bf64-57f1ecebac12"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"OAuth2AuthorizationServer not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -484,7 +505,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:52 GMT"
+ "Fri, 09 Mar 2018 19:50:39 GMT"
],
"Pragma": [
"no-cache"
@@ -496,23 +517,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c372f6ad-60d4-4ab6-9c3b-65f42add1fd9"
+ "a3cf1fbc-6cf8-4fcc-b1ab-4528d2d2a3c9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14969"
],
"x-ms-correlation-request-id": [
- "e79ca2dd-f9e9-46c3-babf-657420d413f3"
+ "9607c2e0-511e-4f32-b91b-ab060281dec8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021453Z:e79ca2dd-f9e9-46c3-babf-657420d413f3"
+ "WESTUS2:20180309T195040Z:9607c2e0-511e-4f32-b91b-ab060281dec8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"grantTypes\": [\r\n \"authorizationCode\",\r\n \"resourceOwnerPassword\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
@@ -523,17 +547,17 @@
"115"
],
"x-ms-client-request-id": [
- "a4bdfecd-1473-495b-93c8-e91f7c0f4a5e"
+ "944fe71c-a6f3-4d43-87b1-f0cc0c81d3a9"
],
"If-Match": [
- "\"AAAAAAAANMU=\""
+ "\"AAAAAAAAOLo=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -545,7 +569,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:51 GMT"
+ "Fri, 09 Mar 2018 19:50:38 GMT"
],
"Pragma": [
"no-cache"
@@ -557,38 +581,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bc3046aa-cb5b-47a7-9798-ba7bc40e5673"
+ "83389c19-27c1-42c2-bcfb-20528c6f3c59"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1181"
],
"x-ms-correlation-request-id": [
- "e6813aaf-1487-46a0-8b7c-237339f59732"
+ "024dca93-7d25-4d94-a94a-1a5331ff3913"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021452Z:e6813aaf-1487-46a0-8b7c-237339f59732"
+ "WESTUS2:20180309T195039Z:024dca93-7d25-4d94-a94a-1a5331ff3913"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fbf277a1-20fb-4aa8-8a03-d3d962cfbd7e"
+ "0a9f3dad-3b16-477a-b6cb-a8ca34dcf654"
],
"If-Match": [
- "\"AAAAAAAANMY=\""
+ "\"AAAAAAAAOLs=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -603,7 +630,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:52 GMT"
+ "Fri, 09 Mar 2018 19:50:39 GMT"
],
"Pragma": [
"no-cache"
@@ -615,28 +642,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3740a736-aa79-41fb-83d1-b3cc4cbdcd6a"
+ "64f5a1fe-007a-480e-b9fc-410da1575b43"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1180"
],
"x-ms-correlation-request-id": [
- "d10dfe49-59d5-4a0c-91ea-6ffb03ec66d2"
+ "a919a5fd-86cb-499b-93dc-79791941296f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021452Z:d10dfe49-59d5-4a0c-91ea-6ffb03ec66d2"
+ "WESTUS2:20180309T195039Z:a919a5fd-86cb-499b-93dc-79791941296f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid6308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNjMwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/authorizationServers/authsid7608?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hdXRob3JpemF0aW9uU2VydmVycy9hdXRoc2lkNzYwOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57c6f095-337c-4d2c-b8fa-816b80ea8510"
+ "de6606a0-e02d-4084-929e-265891edde05"
],
"If-Match": [
"*"
@@ -646,7 +676,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -658,7 +688,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 02:14:52 GMT"
+ "Fri, 09 Mar 2018 19:50:40 GMT"
],
"Pragma": [
"no-cache"
@@ -670,16 +700,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e664dccb-4999-449f-a121-417349ca8c15"
+ "f6d689f5-d710-49ff-aa96-126dd269be58"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1179"
],
"x-ms-correlation-request-id": [
- "2d69d74d-912a-4c75-ac60-c3a647c5a67a"
+ "ab9680f0-700e-4f53-be98-8992e8a56c4b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T021453Z:2d69d74d-912a-4c75-ac60-c3a647c5a67a"
+ "WESTUS2:20180309T195040Z:ab9680f0-700e-4f53-be98-8992e8a56c4b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -687,16 +720,16 @@
],
"Names": {
"CreateListUpdateDelete": [
- "authsid6308",
- "authName3724",
- "oauth2scope334",
- "clientid7105",
- "authdescription5757",
- "authclientsecret7765",
- "authresourceownerpwd831",
- "authresourceownerusername4734",
- "tokenname172",
- "tokenvalue373"
+ "authsid7608",
+ "authName8442",
+ "oauth2scope7414",
+ "clientid9482",
+ "authdescription846",
+ "authclientsecret5100",
+ "authresourceownerpwd2066",
+ "authresourceownerusername2909",
+ "tokenname7255",
+ "tokenvalue5855"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/CreateListUpdateDelete.json
index 41e5d9d0dceb8..11e34d8b15bb9 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "34539d7a-5800-4531-869c-e3706df34446"
+ "91afceae-9f4a-4d74-a7ef-bf2236635d13"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADbPUg=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:14 GMT"
+ "Fri, 09 Mar 2018 19:43:49 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADbPUg=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d602671d-28ef-4788-8ad5-380b1596124a",
- "4db24b66-d28f-4298-bad5-4841502665c4"
+ "cc71f4d9-71a9-4ba2-bec4-6eb72b40e986",
+ "77fdef88-68db-4f2f-a141-4366a5003e4e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "6d806dbe-7429-4fb5-80dc-17e10f19b37b"
+ "2cd683f8-2926-4340-bf87-dcc9c2d09913"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220714Z:6d806dbe-7429-4fb5-80dc-17e10f19b37b"
+ "WESTUS2:20180309T194349Z:2cd683f8-2926-4340-bf87-dcc9c2d09913"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6eb06506-f061-40fb-b930-b6e40202d6ac"
+ "b9885799-dd1a-40c8-953f-77edd0edcb5d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADbPUg=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:14 GMT"
+ "Fri, 09 Mar 2018 19:43:50 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADbPUg=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,25 +124,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d4920692-721e-49bf-91aa-f8972e9d119f"
+ "3e2a1d2c-8c81-4eac-8ec5-46032b30b6ae"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14997"
],
"x-ms-correlation-request-id": [
- "930a83f0-ed72-411f-a401-6ec798700c11"
+ "9f75a3e3-13e6-46c9-9ea9-b2c9363b5fa4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220714Z:930a83f0-ed72-411f-a401-6ec798700c11"
+ "WESTUS2:20180309T194350Z:9f75a3e3-13e6-46c9-9ea9-b2c9363b5fa4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description4934\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n },\r\n \"url\": \"https://backendname1912/\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description3196\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n },\r\n \"url\": \"https://backendname5759/\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -148,17 +154,17 @@
"565"
],
"x-ms-client-request-id": [
- "6984aef6-cba5-4ec3-b267-f30c47cc6af6"
+ "e81beabd-bc41-4cd0-ac47-34a8cf719b1c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid5696\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description4934\",\r\n \"url\": \"https://backendname1912/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6143\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description3196\",\r\n \"url\": \"https://backendname5759/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"849"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:15 GMT"
+ "Fri, 09 Mar 2018 19:43:51 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANjs=\""
+ "\"AAAAAAAAOHg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,38 +194,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7a3e3a3-11cc-4235-a734-600a95416a65"
+ "bd9bc15c-2271-48ce-b444-d1150d420946"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "18ab2cad-92a2-4e7c-8fde-0710e2604ff3"
+ "a1155554-4cc4-4905-9c1e-38412ee6749f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220716Z:18ab2cad-92a2-4e7c-8fde-0710e2604ff3"
+ "WESTUS2:20180309T194351Z:a1155554-4cc4-4905-9c1e-38412ee6749f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d7ec943-6824-43e9-8d5e-d3b734e01185"
+ "ed55523b-55a9-4655-99be-678c5eafee68"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid5696\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description4934\",\r\n \"url\": \"https://backendname1912/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6143\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description3196\",\r\n \"url\": \"https://backendname5759/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:16 GMT"
+ "Fri, 09 Mar 2018 19:43:51 GMT"
],
"Pragma": [
"no-cache"
@@ -240,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANjs=\""
+ "\"AAAAAAAAOHg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,38 +261,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f002400c-2de1-4c68-bef6-81609bd50d9a"
+ "ac9a4fff-c627-4e7b-b612-190f76097c04"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14996"
],
"x-ms-correlation-request-id": [
- "37fc9203-f9a3-4abf-9f92-74186fef509f"
+ "4316e636-16e7-4d3a-87e3-eab15654e994"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220716Z:37fc9203-f9a3-4abf-9f92-74186fef509f"
+ "WESTUS2:20180309T194351Z:4316e636-16e7-4d3a-87e3-eab15654e994"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3a3ebbc-5405-4374-8671-e23cac1dfc33"
+ "0b559f49-04e6-4866-a132-8b2d262e20c0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid5696\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription9580\",\r\n \"url\": \"https://backendname1912/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6143\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription1022\",\r\n \"url\": \"https://backendname5759/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -295,7 +307,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:17 GMT"
+ "Fri, 09 Mar 2018 19:43:52 GMT"
],
"Pragma": [
"no-cache"
@@ -304,7 +316,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANjw=\""
+ "\"AAAAAAAAOHk=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -316,35 +328,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3b21f62-a04d-4fbe-b1cf-a28b3160bf5d"
+ "e447f6ee-bd49-40de-8526-dc159da8dc91"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14993"
],
"x-ms-correlation-request-id": [
- "1aa09d38-5d49-4fd0-9e6a-35d5b4d17f68"
+ "8be2aff9-9747-4704-8f8b-53ba08f9e425"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220717Z:1aa09d38-5d49-4fd0-9e6a-35d5b4d17f68"
+ "WESTUS2:20180309T194352Z:8be2aff9-9747-4704-8f8b-53ba08f9e425"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fe579be-8625-483b-96cc-af69eafbd5de"
+ "d67a36ee-b47f-48e1-b69c-8965a2d3a2eb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Backend not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -362,7 +377,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:19 GMT"
+ "Fri, 09 Mar 2018 19:43:53 GMT"
],
"Pragma": [
"no-cache"
@@ -374,16 +389,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4474f3c6-12c1-4a09-8459-44547a355326"
+ "3017658f-d9a6-43a3-bffb-32c1da08bd65"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14991"
],
"x-ms-correlation-request-id": [
- "fd6fff08-9e65-4057-b9ae-ea47fbf98057"
+ "834c69b7-7c13-4ba9-9936-99f666b40127"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220719Z:fd6fff08-9e65-4057-b9ae-ea47fbf98057"
+ "WESTUS2:20180309T194353Z:834c69b7-7c13-4ba9-9936-99f666b40127"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -395,17 +413,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9df6a96-57f1-45ba-95ea-1583c200df4f"
+ "f6f9fa3a-06cd-44e6-b92e-58b6e299767e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid5696\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description4934\",\r\n \"url\": \"https://backendname1912/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"backendid6143\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description3196\",\r\n \"url\": \"https://backendname5759/\",\r\n \"protocol\": \"http\",\r\n \"credentials\": {\r\n \"query\": {\r\n \"sv\": [\r\n \"xx\",\r\n \"bb\",\r\n \"cc\"\r\n ]\r\n },\r\n \"header\": {\r\n \"x-my-1\": [\r\n \"val1\",\r\n \"val2\"\r\n ]\r\n },\r\n \"authorization\": {\r\n \"scheme\": \"basic\",\r\n \"parameter\": \"opensemame\"\r\n }\r\n },\r\n \"tls\": {\r\n \"validateCertificateChain\": true,\r\n \"validateCertificateName\": true\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -417,7 +435,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:16 GMT"
+ "Fri, 09 Mar 2018 19:43:51 GMT"
],
"Pragma": [
"no-cache"
@@ -435,35 +453,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5201b2dd-cfa5-4a76-8587-b2b2dad351af"
+ "5ec3a14f-5688-48ad-99db-8e85ecb95d5a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14995"
],
"x-ms-correlation-request-id": [
- "23238ed2-00e2-4b42-ae19-b24d0714b581"
+ "c0417ed2-e85c-4e9c-87c2-7ee2b2bb8fe0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220716Z:23238ed2-00e2-4b42-ae19-b24d0714b581"
+ "WESTUS2:20180309T194351Z:c0417ed2-e85c-4e9c-87c2-7ee2b2bb8fe0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a08c2ac-895a-429f-ac51-a47f5b7476ce"
+ "23571ffc-2113-41a4-93f7-8c1bb7b61990"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -478,13 +499,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:16 GMT"
+ "Fri, 09 Mar 2018 19:43:52 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANjs=\""
+ "\"AAAAAAAAOHg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -493,35 +514,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fa4ebf18-0525-4c99-a3db-6004272ade3e"
+ "fc7ce6b7-d7cc-4ae4-8470-c2138e4eb073"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14994"
],
"x-ms-correlation-request-id": [
- "477b3935-413e-44c1-ab12-1e5d6b32c902"
+ "db447218-6bb4-4270-ac94-371ce6cd1e0b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220716Z:477b3935-413e-44c1-ab12-1e5d6b32c902"
+ "WESTUS2:20180309T194352Z:db447218-6bb4-4270-ac94-371ce6cd1e0b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed422a14-d7e5-4f1f-ad6b-77e2d84d5de4"
+ "ec5801a4-e95e-447a-ac9a-9db2aaa2983e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -536,13 +560,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:17 GMT"
+ "Fri, 09 Mar 2018 19:43:52 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANjw=\""
+ "\"AAAAAAAAOHk=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -551,25 +575,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2239002-8d0b-4e9f-8523-eea63fabc279"
+ "fa64d19d-4f0f-4065-bef0-814399951576"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14992"
],
"x-ms-correlation-request-id": [
- "cd047e99-ed27-490f-af2c-18018123abbf"
+ "5b06d7ca-becf-4564-87bc-32d9b7fa8119"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220718Z:cd047e99-ed27-490f-af2c-18018123abbf"
+ "WESTUS2:20180309T194353Z:5b06d7ca-becf-4564-87bc-32d9b7fa8119"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription9580\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription1022\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -578,17 +605,17 @@
"73"
],
"x-ms-client-request-id": [
- "3afa2902-4e82-493c-b178-88a70d2e08da"
+ "ae5de4e5-f251-4eeb-b30a-5ffb0dc7b660"
],
"If-Match": [
- "\"AAAAAAAANjs=\""
+ "\"AAAAAAAAOHg=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -600,7 +627,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:17 GMT"
+ "Fri, 09 Mar 2018 19:43:52 GMT"
],
"Pragma": [
"no-cache"
@@ -612,38 +639,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d0bf9666-5878-4717-8192-12036e3855f5"
+ "1f4987e7-8278-44cc-88c4-2769227b1c7f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "e0fb9732-ebf2-4e3a-83da-126faaedd4e3"
+ "167e786d-adbf-48ef-badf-87ea608ed66c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220717Z:e0fb9732-ebf2-4e3a-83da-126faaedd4e3"
+ "WESTUS2:20180309T194352Z:167e786d-adbf-48ef-badf-87ea608ed66c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "916256af-a0da-481f-a3c4-4eb2e3c2880e"
+ "585bc17a-2fa7-43df-b2b5-85d4facb931e"
],
"If-Match": [
- "\"AAAAAAAANjw=\""
+ "\"AAAAAAAAOHk=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -658,7 +688,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:18 GMT"
+ "Fri, 09 Mar 2018 19:43:53 GMT"
],
"Pragma": [
"no-cache"
@@ -670,28 +700,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e2c91be8-7d88-4fdc-a11b-c9670ddb2732"
+ "5f411e99-2a53-4b01-839a-31a736614446"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "70d5c8a4-d73c-49e5-9de4-1f6d51801cc2"
+ "78d7b596-22c1-447d-a6d1-0599840b63fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220719Z:70d5c8a4-d73c-49e5-9de4-1f6d51801cc2"
+ "WESTUS2:20180309T194353Z:78d7b596-22c1-447d-a6d1-0599840b63fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid5696?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ1Njk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/backendid6143?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9iYWNrZW5kaWQ2MTQzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "94342348-4606-43d6-8b95-ab421a16b512"
+ "f669b7b4-7e52-4afa-a659-94149491b695"
],
"If-Match": [
"*"
@@ -701,7 +734,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -713,7 +746,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 22:07:19 GMT"
+ "Fri, 09 Mar 2018 19:43:53 GMT"
],
"Pragma": [
"no-cache"
@@ -725,16 +758,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b36216b7-c995-4b99-a306-4139ecda4176"
+ "73f1c87c-5abf-4175-8c4c-b06601062824"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "2d2090eb-6431-4a48-9414-3e97ffcf5898"
+ "1dd8078f-6804-4a8b-aa82-1b1b77aa097f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T220719Z:2d2090eb-6431-4a48-9414-3e97ffcf5898"
+ "WESTUS2:20180309T194353Z:1dd8078f-6804-4a8b-aa82-1b1b77aa097f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -742,10 +778,10 @@
],
"Names": {
"CreateListUpdateDelete": [
- "backendid5696",
- "backendName1912",
- "description4934",
- "patchedDescription9580"
+ "backendid6143",
+ "backendName5759",
+ "description3196",
+ "patchedDescription1022"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/ServiceFabricCreateUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/ServiceFabricCreateUpdateDelete.json
index e5e36d5c5a23f..23a9f7188d362 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/ServiceFabricCreateUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.BackendTests/ServiceFabricCreateUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "62cf99ec-6948-4fcb-8dff-56f5f011251d"
+ "37eb5d35-0a53-42c6-aba9-cf370448702f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADbPUg=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:26 GMT"
+ "Fri, 09 Mar 2018 19:44:20 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADbPUg=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "71dc6107-59b3-46de-a648-2cdfa06058d6",
- "5d54f74e-7e78-4486-bf2c-bf2aed38c427"
+ "17201898-905b-49a5-9b70-6913529b35c1",
+ "be0e8ab4-9c01-44da-80b6-6c1b472e2f21"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "a45f7a58-e096-45b8-8264-1477e44d1774"
+ "450e38e4-51fa-4325-acf3-9c074c0d8e7f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001026Z:a45f7a58-e096-45b8-8264-1477e44d1774"
+ "WESTUS2:20180309T194421Z:450e38e4-51fa-4325-acf3-9c074c0d8e7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d484b723-e006-465c-bf44-0210df62c084"
+ "92c8da2f-934b-4704-bb56-99708316808a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADbPUg=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:26 GMT"
+ "Fri, 09 Mar 2018 19:44:20 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADbPUg=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,23 +124,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f1fd714a-ab60-4c62-8a60-aa8be7b10f6c"
+ "4b9e0c5e-46fc-4d8a-b8d5-f39bc6b14113"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "3a919c6b-0de1-4b67-b693-237a8d0f7d06"
+ "3a51f306-f4e0-4ede-9468-3c8294a9cd0b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001026Z:3a919c6b-0de1-4b67-b693-237a8d0f7d06"
+ "WESTUS2:20180309T194421Z:3a51f306-f4e0-4ede-9468-3c8294a9cd0b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId6618?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDY2MTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3056?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDMwNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
@@ -148,17 +154,17 @@
"2493"
],
"x-ms-client-request-id": [
- "4c0d2bf2-8de3-40ea-81af-e9adf3a88b63"
+ "5b873b11-2e44-4ed3-8137-6f1537271062"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId6618\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId6618\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3056\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3056\",\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}",
"ResponseHeaders": {
"Content-Length": [
"456"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:27 GMT"
+ "Fri, 09 Mar 2018 19:44:21 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANkY=\""
+ "\"AAAAAAAAOHo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,25 +194,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e58e9e98-8a39-401d-9a2e-a0e04e146859"
+ "863407d6-58cf-47a4-8408-a33b986e214f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "6bd014a9-6abf-484d-a0bf-de41bd3428a9"
+ "f37fd794-0595-406c-a3ee-e6ed3fa1b050"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001027Z:6bd014a9-6abf-484d-a0bf-de41bd3428a9"
+ "WESTUS2:20180309T194422Z:f37fd794-0595-406c-a3ee-e6ed3fa1b050"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description8636\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"maxPartitionResolutionRetries\": 5,\r\n \"managementEndpoints\": [\r\n \"https://backendname2641/\"\r\n ],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"https://backendname2641/\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description5957\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"clientCertificatethumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"maxPartitionResolutionRetries\": 5,\r\n \"managementEndpoints\": [\r\n \"https://backendname3838/\"\r\n ],\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"url\": \"https://backendname3838/\",\r\n \"protocol\": \"http\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -215,17 +224,17 @@
"588"
],
"x-ms-client-request-id": [
- "cb6da8a0-8d27-444b-bb37-c18d22b7513e"
+ "0beb32fe-b0c3-43c9-8e44-d5b2a9aa360c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend3906\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description8636\",\r\n \"url\": \"https://backendname2641/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname2641/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend4752\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description5957\",\r\n \"url\": \"https://backendname3838/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname3838/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"872"
@@ -240,13 +249,13 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:28 GMT"
+ "Fri, 09 Mar 2018 19:44:22 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANkc=\""
+ "\"AAAAAAAAOHs=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -255,16 +264,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1fc50382-b951-42a9-bc3c-2ebcfb119cc5"
+ "34fac2d5-f996-4e3f-b20d-26549b97796f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "732b8f56-41a4-4f2b-bfe6-6636ade6a931"
+ "5cef033e-4dbe-4296-a4e3-6ab7a1565329"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001028Z:732b8f56-41a4-4f2b-bfe6-6636ade6a931"
+ "WESTUS2:20180309T194422Z:5cef033e-4dbe-4296-a4e3-6ab7a1565329"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -276,17 +288,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "571186ea-7684-493b-8d90-e88db22ac42a"
+ "3b2c1311-423c-42c1-a92e-8f1380feed28"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend3906\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description8636\",\r\n \"url\": \"https://backendname2641/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname2641/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend4752\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"description5957\",\r\n \"url\": \"https://backendname3838/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname3838/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -298,7 +310,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:28 GMT"
+ "Fri, 09 Mar 2018 19:44:22 GMT"
],
"Pragma": [
"no-cache"
@@ -316,23 +328,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2f8acde1-d3e3-4184-92ac-fe620a284011"
+ "611a6ac1-953c-4efe-be96-1926571882cf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "e56b1661-d106-4732-97eb-636d13867e07"
+ "5c243086-ec38-40c3-8de0-34be6c6bdf1b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001028Z:e56b1661-d106-4732-97eb-636d13867e07"
+ "WESTUS2:20180309T194423Z:5c243086-ec38-40c3-8de0-34be6c6bdf1b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906/reconnect?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2L3JlY29ubmVjdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752/reconnect?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyL3JlY29ubmVjdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"properties\": {\r\n \"after\": \"PT5M\"\r\n }\r\n}",
"RequestHeaders": {
@@ -343,14 +358,14 @@
"49"
],
"x-ms-client-request-id": [
- "4576b46a-086d-4410-8730-c379d63d9bf6"
+ "e2c058ce-a8d9-433e-b9e1-85c7b5f778fc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -365,7 +380,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:29 GMT"
+ "Fri, 09 Mar 2018 19:44:22 GMT"
],
"Pragma": [
"no-cache"
@@ -377,34 +392,37 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4f71c9eb-2ff5-4b8a-8e7d-99b575ebf913"
+ "c5f7f4a2-35a3-4d4e-86b0-125a1bb7bd23"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "b11e3e03-a2bb-4128-b1b0-aeec56bc71af"
+ "15132f37-141c-417f-93c6-6bef10aa1ca1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001029Z:b11e3e03-a2bb-4128-b1b0-aeec56bc71af"
+ "WESTUS2:20180309T194423Z:15132f37-141c-417f-93c6-6bef10aa1ca1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription932\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"patchedDescription8646\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "72"
+ "73"
],
"x-ms-client-request-id": [
- "72f17af0-e783-4d9e-ac86-d79d70632f32"
+ "d15b6a6f-ccbb-40c1-ba85-1848f7a473c4"
],
"If-Match": [
"*"
@@ -414,7 +432,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -426,7 +444,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:29 GMT"
+ "Fri, 09 Mar 2018 19:44:23 GMT"
],
"Pragma": [
"no-cache"
@@ -438,38 +456,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "31e6b05a-c13c-4024-8fbf-3ccdbd92b6e2"
+ "61079d77-fbe2-49e8-837d-9536fa33699c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "65a4a55f-aac0-4e85-82e8-8acab8a96d7f"
+ "05e1f0f3-0f0a-440e-806e-8a4063b9e17f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001029Z:65a4a55f-aac0-4e85-82e8-8acab8a96d7f"
+ "WESTUS2:20180309T194423Z:05e1f0f3-0f0a-440e-806e-8a4063b9e17f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47992771-7bc2-4bf7-98b5-29ed84f57eb2"
+ "4fa5fe06-ecac-4d15-85e0-e3e61e191007"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend3906\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription932\",\r\n \"url\": \"https://backendname2641/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname2641/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752\",\r\n \"type\": \"Microsoft.ApiManagement/service/backends\",\r\n \"name\": \"sfbackend4752\",\r\n \"properties\": {\r\n \"title\": null,\r\n \"description\": \"patchedDescription8646\",\r\n \"url\": \"https://backendname3838/\",\r\n \"protocol\": \"http\",\r\n \"properties\": {\r\n \"serviceFabricCluster\": {\r\n \"managementEndpoints\": [\r\n \"https://backendname3838/\"\r\n ],\r\n \"clientCertificateThumbprint\": \"8E989652CABCF585ACBFCB9C2C91F1D174FDB3A2\",\r\n \"serverX509Names\": [\r\n {\r\n \"name\": \"serverCommonName1\",\r\n \"issuerCertificateThumbprint\": \"issuerThumbprint1\"\r\n }\r\n ],\r\n \"maxPartitionResolutionRetries\": 5\r\n }\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -481,7 +502,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:30 GMT"
+ "Fri, 09 Mar 2018 19:44:23 GMT"
],
"Pragma": [
"no-cache"
@@ -490,7 +511,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANko=\""
+ "\"AAAAAAAAOH8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -502,35 +523,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c306563e-3b39-4327-9454-21878e893ed3"
+ "9dd82301-05a3-4452-9693-e9f3544ccdc3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "09ffa451-f77a-4c68-9344-decc7a234310"
+ "ed5a7892-08a2-4add-8dc9-f54636771877"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001030Z:09ffa451-f77a-4c68-9344-decc7a234310"
+ "WESTUS2:20180309T194423Z:ed5a7892-08a2-4add-8dc9-f54636771877"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "849c6464-ffb0-4133-8bad-335f959b4909"
+ "8161a312-6138-4efd-9a4e-c50e6e132106"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Backend not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -548,7 +572,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:30 GMT"
+ "Fri, 09 Mar 2018 19:44:24 GMT"
],
"Pragma": [
"no-cache"
@@ -560,35 +584,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a7282fd-8433-4119-bb22-81819a4648aa"
+ "d7927278-2ade-43f9-b73f-52141f39a6a2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "ebd151f9-db44-42b5-8957-e78c432017af"
+ "d2e20a3e-1f9e-43e7-b461-5f1c13efa8b6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001030Z:ebd151f9-db44-42b5-8957-e78c432017af"
+ "WESTUS2:20180309T194424Z:d2e20a3e-1f9e-43e7-b461-5f1c13efa8b6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31bcc339-08fd-4662-aff6-3fd34fcb1a9f"
+ "e0071acb-c4d7-4cbd-af18-2c24ed31f52d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -603,13 +630,13 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:30 GMT"
+ "Fri, 09 Mar 2018 19:44:23 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANko=\""
+ "\"AAAAAAAAOH8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -618,38 +645,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7d1233fa-4ab7-4666-a746-65589f3097c3"
+ "b03599b8-8b13-407e-b143-71f706de9385"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "a2ddff44-261f-4be2-8735-304ce6fbc270"
+ "e0b9d0ca-632d-45f9-b09d-971fc96cfc4f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001030Z:a2ddff44-261f-4be2-8735-304ce6fbc270"
+ "WESTUS2:20180309T194424Z:e0b9d0ca-632d-45f9-b09d-971fc96cfc4f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "783d834e-a792-4a34-9623-83bbaf79e3e0"
+ "e8913531-9d33-42dd-971e-4867ae8544f0"
],
"If-Match": [
- "\"AAAAAAAANko=\""
+ "\"AAAAAAAAOH8=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -664,7 +694,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:30 GMT"
+ "Fri, 09 Mar 2018 19:44:23 GMT"
],
"Pragma": [
"no-cache"
@@ -676,28 +706,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "61c54acc-ee7e-4747-bc26-6b820dda4ea0"
+ "c2d52de7-9809-4451-baca-8c440863278e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "090d5baa-a1db-4d8b-829b-02f8ec20c522"
+ "a40bf937-aee6-4266-9009-7c58810a256a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001030Z:090d5baa-a1db-4d8b-829b-02f8ec20c522"
+ "WESTUS2:20180309T194424Z:a40bf937-aee6-4266-9009-7c58810a256a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend3906?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQzOTA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/backends/sfbackend4752?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9iYWNrZW5kcy9zZmJhY2tlbmQ0NzUyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1982ee11-3512-4712-a60c-5d979e44b852"
+ "e0370eaf-1426-46ba-bce3-8890fe2387b0"
],
"If-Match": [
"*"
@@ -707,7 +740,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -719,7 +752,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:30 GMT"
+ "Fri, 09 Mar 2018 19:44:24 GMT"
],
"Pragma": [
"no-cache"
@@ -731,28 +764,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "28f3ad5f-eae2-4db7-b58f-a08be39fa918"
+ "fa75af2a-aaa7-4403-a87c-040f3969ddc0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "fd21bfd4-81ba-47af-8664-2db0f9c7c61b"
+ "5946429c-f7c6-4423-95eb-516fa62c9522"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001031Z:fd21bfd4-81ba-47af-8664-2db0f9c7c61b"
+ "WESTUS2:20180309T194424Z:5946429c-f7c6-4423-95eb-516fa62c9522"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId6618?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDY2MTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3056?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDMwNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "502dd022-420c-4248-a40e-df9547b6db7b"
+ "551cbad0-38a0-4b4b-b284-3b555a537cad"
],
"If-Match": [
"*"
@@ -762,7 +798,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -777,7 +813,7 @@
"no-cache"
],
"Date": [
- "Thu, 22 Feb 2018 00:10:31 GMT"
+ "Fri, 09 Mar 2018 19:44:24 GMT"
],
"Pragma": [
"no-cache"
@@ -789,16 +825,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "26b0ccdf-d384-4232-97cd-efec3c756adb"
+ "90473c64-4561-4b82-a248-e34ac84a8b91"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1192"
],
"x-ms-correlation-request-id": [
- "2156e96d-3450-48df-898f-332a081d2a2e"
+ "0bb51d26-f75c-47fc-8aaf-71037fcf3339"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180222T001031Z:2156e96d-3450-48df-898f-332a081d2a2e"
+ "WESTUS2:20180309T194425Z:0bb51d26-f75c-47fc-8aaf-71037fcf3339"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -806,11 +845,11 @@
],
"Names": {
"ServiceFabricCreateUpdateDelete": [
- "sfbackend3906",
- "certificateId6618",
- "backendName2641",
- "description8636",
- "patchedDescription932"
+ "sfbackend4752",
+ "certificateId3056",
+ "backendName3838",
+ "description5957",
+ "patchedDescription8646"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CertificateTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CertificateTests/CreateListUpdateDelete.json
index 3135149f55582..035e7a57f17c6 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CertificateTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.CertificateTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "afd71806-fde5-4864-b4d3-9ac8d8c8b868"
+ "5b9c3ddc-3879-4e25-b72f-9b83ed31bd38"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:51 GMT"
+ "Fri, 09 Mar 2018 19:40:43 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "015d534a-cf03-4ca2-a69d-f9f1c2b387bf",
- "4190f32d-228c-44a0-b161-bb6da294c17c"
+ "b20c2f04-5c70-4a3d-8abe-3e94cbe7e14c",
+ "4cd68a6a-3fe8-42cd-953e-b5ab7ca470a1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "2d548ac8-1704-48b5-9e69-e41a0552f968"
+ "b2c12ea5-7d57-48c4-99af-d14aa6d2503b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235551Z:2d548ac8-1704-48b5-9e69-e41a0552f968"
+ "WESTUS2:20180309T194044Z:b2c12ea5-7d57-48c4-99af-d14aa6d2503b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fad6381-1261-4dbf-8f51-d19b8fb81ee2"
+ "1aadcefc-e492-4270-9637-cdf203be1ed9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:51 GMT"
+ "Fri, 09 Mar 2018 19:40:43 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ceb8255a-eb2e-41a5-ba4a-94c73a1ac1a0"
+ "6e6cd751-61ef-448f-ad1f-7949d8f1ce3d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14993"
],
"x-ms-correlation-request-id": [
- "f5719ddc-b8fb-472c-874e-c838688c01d0"
+ "ccec6e00-9aa6-43e0-aa0c-832b3cf31fee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235551Z:f5719ddc-b8fb-472c-874e-c838688c01d0"
+ "WESTUS2:20180309T194044Z:ccec6e00-9aa6-43e0-aa0c-832b3cf31fee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2de87104-72a0-40fd-95d7-8578fa171ec2"
+ "db378d07-21e7-4b82-9045-531b0dbf71fb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:51 GMT"
+ "Fri, 09 Mar 2018 19:40:44 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c39e75d1-7dd8-4268-9dee-85d24e53478a"
+ "fb9be030-cd75-4017-8ef8-a0f038772b18"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14992"
],
"x-ms-correlation-request-id": [
- "3cc67597-3fa1-432e-932e-e7eb330c7999"
+ "c08e9e2b-fcad-406c-be8e-dd157c42a844"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235551Z:3cc67597-3fa1-432e-932e-e7eb330c7999"
+ "WESTUS2:20180309T194045Z:c08e9e2b-fcad-406c-be8e-dd157c42a844"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,17 +212,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfa6f36e-5aed-4bb2-b2c7-3c67f42a163d"
+ "33444b37-b599-4321-84db-be03bea801ac"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId2276\",\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 \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3159\",\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 \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:52 GMT"
+ "Fri, 09 Mar 2018 19:40:46 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03adb91b-75fd-4d40-9058-366afc99622e"
+ "17155cd0-b4e1-416e-9a5e-5014e9815954"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14990"
],
"x-ms-correlation-request-id": [
- "4bfa4d2f-67ea-43f0-86aa-806ff278c60e"
+ "9455892a-a7f8-4c8d-a1f4-5f8142940884"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235552Z:4bfa4d2f-67ea-43f0-86aa-806ff278c60e"
+ "WESTUS2:20180309T194047Z:9455892a-a7f8-4c8d-a1f4-5f8142940884"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a9f165c-86eb-4ba7-ba8b-eb35080b53e8"
+ "ebcdbf97-1f1c-44a0-b932-6e27f66cf549"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:52 GMT"
+ "Fri, 09 Mar 2018 19:40:47 GMT"
],
"Pragma": [
"no-cache"
@@ -304,23 +316,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "484becfa-cce5-401d-97fd-6a691e1ccfbb"
+ "b46b74a7-02d6-4836-91b6-39d7998b2e1a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14989"
],
"x-ms-correlation-request-id": [
- "32f7b79f-c8d6-493e-a99c-2d873e360378"
+ "06284a9a-647e-4c24-8e24-81faf28d99b2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235553Z:32f7b79f-c8d6-493e-a99c-2d873e360378"
+ "WESTUS2:20180309T194048Z:06284a9a-647e-4c24-8e24-81faf28d99b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDIyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDMxNTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"data\": \"MIIHEwIBAzCCBs8GCSqGSIb3DQEHAaCCBsAEgga8MIIGuDCCA9EGCSqGSIb3DQEHAaCCA8IEggO+MIIDujCCA7YGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAidzys9WFRXCgICB9AEggKQRcdJYUKe+Yaf12UyefArSDv4PBBGqR0mh2wdLtPW3TCs6RIGjP4Nr3/KA4o8V8MF3EVQ8LWd/zJRdo7YP2Rkt/TPdxFMDH9zVBvt2/4fuVvslqV8tpphzdzfHAMQvO34ULdB6lJVtpRUx3WNUSbC3h5D1t5noLb0u0GFXzTUAsIw5CYnFCEyCTatuZdAx2V/7xfc0yF2kw/XfPQh0YVRy7dAT/rMHyaGfz1MN2iNIS048A1ExKgEAjBdXBxZLbjIL6rPxB9pHgH5AofJ50k1dShfSSzSzza/xUon+RlvD+oGi5yUPu6oMEfNB21CLiTJnIEoeZ0Te1EDi5D9SrOjXGmcZjCjcmtITnEXDAkI0IhY1zSjABIKyt1rY8qyh8mGT/RhibxxlSeSOIPsxTmXvcnFP3J+oRoHyWzrp6DDw2ZjRGBenUdExg1tjMqThaE7luNB6Yko8NIObwz3s7tpj6u8n11kB5RzV8zJUZkrHnYzrRFIQF8ZFjI9grDFPlccuYFPYUzSsEQU3l4mAoc0cAkaxCtZg9oi2bcVNTLQuj9XbPK2FwPXaF+owBEgJ0TnZ7kvUFAvN1dECVpBPO5ZVT/yaxJj3n380QTcXoHsav//Op3Kg+cmmVoAPOuBOnC6vKrcKsgDgf+gdASvQ+oBjDhTGOVk22jCDQpyNC/gCAiZfRdlpV98Abgi93VYFZpi9UlcGxxzgfNzbNGc06jWkw8g6RJvQWNpCyJasGzHKQOSCBVhfEUidfB2KEkMy0yCWkhbL78GadPIZG++FfM4X5Ov6wUmtzypr60/yJLduqZDhqTskGQlaDEOLbUtjdlhprYhHagYQ2tPD+zmLN7sOaYA6Y+ZZDg7BYq5KuOQZ2QxgewwDQYJKwYBBAGCNxECMQAwEwYJKoZIhvcNAQkVMQYEBAEAAAAwWwYJKoZIhvcNAQkUMU4eTAB7ADYANwBCADcAQQA1AEMAOQAtAEMAQQAzADIALQA0ADAAQwA0AC0AQQAxADUAMwAtAEEAQgAyADIANwA5ADUARQBGADcAOABBAH0waQYJKwYBBAGCNxEBMVweWgBNAGkAYwByAG8AcwBvAGYAdAAgAFIAUwBBACAAUwBDAGgAYQBuAG4AZQBsACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCAt8GCSqGSIb3DQEHBqCCAtAwggLMAgEAMIICxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIGa3JOIHoBmsCAgfQgIICmF5H0WCdmEFOmpqKhkX6ipBiTk0Rb+vmnDU6nl2L09t4WBjpT1gIddDHMpzObv3ktWts/wA6652h2wNKrgXEFU12zqhaGZWkTFLBrdplMnx/hr804NxiQa4A+BBIsLccczN21776JjU7PBCIvvmuudsKi8V+PmF2K6Lf/WakcZEq4Iq6gmNxTvjSiXMWZe7Wj4+Izt2aoooDYwfQs4KBlI03HzMSU3omA0rXLtARDXwHAJXW2uFwqihlPdC4gwDd/YFwUvnKn92UmyAvENKUV/uKyH3AF1ZqlUgBzYNXyd8YX9H8rtfho2f6qaJZQC93YU3fs9L1xmWIH5saow8r3K85dGCJsisddNsgwtH/o4imOSs8WJw1EjjdpYhyCjs9gE/7ovZzcvrdXBZditLFN8nRIX5HFGz93PksHAQwZbVnbCwVgTGf0Sy5WstPb340ODE5CrakMPUIiVPQgkujpIkW7r4cIwwyyGKza9ZVEXcnoSWZiFSB7yaEf0SYZEoECZwN52wiMxeosJjaAPpWXFe8x5mHbDZ7/DE+pv+Qlyo7rQIzu4SZ9GCvs33dMC/7+RPy6u32ca87kKBQHR1JeCHeBdklMw+pSFRdHxIxq1l5ktycan943OluTdqND5Vf2RwXdSFv2P53334XNKG82wsfm68w7+EgEClDFLz7FymmIfoFO2z0H0adQvkq/7GcIFBSr1K0KEfT2l6csrMc3NSwzDOFiYJDDf++OYUN4nVKlkVE5j+c9Zo8ZkAlz8I4m756wL7e++xXWgwovlsxkBE5TdwWDZDOE8id6yJf54/o4JwS5SEnnNlvt3gRNdo6yCSUrTHfIr9YhvAdJUXbdSrNm5GZu+2fhgg/UJ7EY8pf5BczhNSDkcAwOzAfMAcGBSsOAwIaBBRzf6NV4Bxf3KRT41VV4sQZ348BtgQU7+VeN+vrmbRv0zCvk7r1ORhJ7YkCAgfQ\",\r\n \"password\": \"Password\"\r\n }\r\n}",
"RequestHeaders": {
@@ -331,17 +346,17 @@
"2493"
],
"x-ms-client-request-id": [
- "03de60fd-c78b-422a-acf0-8b123ec30d8d"
+ "cd2c511a-c79d-4b2d-b760-0140852e3867"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId2276\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3159\",\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}",
"ResponseHeaders": {
"Content-Length": [
"456"
@@ -356,13 +371,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:52 GMT"
+ "Fri, 09 Mar 2018 19:40:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM/4=\""
+ "\"AAAAAAAAOHA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -371,38 +386,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fdaf970b-81fa-432c-85e6-dc6b34927b60"
+ "c909c475-7db4-4e6f-8c6c-a419d7a47d11"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "9ad88a54-0c07-4d2f-8417-5184f311cb83"
+ "2f7fd27d-8523-4f07-a82a-77752df14eb5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235552Z:9ad88a54-0c07-4d2f-8417-5184f311cb83"
+ "WESTUS2:20180309T194047Z:2f7fd27d-8523-4f07-a82a-77752df14eb5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDIyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDMxNTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59548603-74da-42ad-a2a4-37ab3160a9fb"
+ "5e520368-3999-4174-93ed-7f0fb1d2ceff"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId2276\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159\",\r\n \"type\": \"Microsoft.ApiManagement/service/certificates\",\r\n \"name\": \"certificateId3159\",\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}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -414,7 +432,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:52 GMT"
+ "Fri, 09 Mar 2018 19:40:46 GMT"
],
"Pragma": [
"no-cache"
@@ -423,7 +441,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM/4=\""
+ "\"AAAAAAAAOHA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,38 +453,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8b9b2e36-f0e9-4d9f-b171-58fd653176e7"
+ "f3686543-70a1-44a9-a294-a3938eeb8ff2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14991"
],
"x-ms-correlation-request-id": [
- "d95f382a-e80b-44ed-b8b2-777873481388"
+ "af4ac53e-8865-4e3f-8050-b3c17c97e22a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235552Z:d95f382a-e80b-44ed-b8b2-777873481388"
+ "WESTUS2:20180309T194047Z:af4ac53e-8865-4e3f-8050-b3c17c97e22a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDIyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDMxNTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "559cf4ef-2d50-4b5e-83c2-6fc60c7226de"
+ "31f2e181-c460-4495-945b-380bab7273af"
],
"If-Match": [
- "\"AAAAAAAAM/4=\""
+ "\"AAAAAAAAOHA=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -481,7 +502,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:52 GMT"
+ "Fri, 09 Mar 2018 19:40:47 GMT"
],
"Pragma": [
"no-cache"
@@ -493,28 +514,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b27f743-5b87-4c60-a6e1-e83f3c433b64"
+ "025ac7ee-d0cf-4585-a136-38149a7b6c2b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1194"
],
"x-ms-correlation-request-id": [
- "ec10f5be-87e3-4cc2-b82d-c6dda52c4e83"
+ "eb29e034-ccc1-4410-be64-d1436e3d7b1d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235553Z:ec10f5be-87e3-4cc2-b82d-c6dda52c4e83"
+ "WESTUS2:20180309T194047Z:eb29e034-ccc1-4410-be64-d1436e3d7b1d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId2276?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDIyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/certificates/certificateId3159?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9jZXJ0aWZpY2F0ZXMvY2VydGlmaWNhdGVJZDMxNTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dcae67b3-88af-47eb-a36c-9c7d1d8e1f11"
+ "cb209eba-d270-40b3-a5f4-fb3169cbb2da"
],
"If-Match": [
"*"
@@ -524,7 +548,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -536,7 +560,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:55:53 GMT"
+ "Fri, 09 Mar 2018 19:40:47 GMT"
],
"Pragma": [
"no-cache"
@@ -548,16 +572,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "688d33a1-7d98-47f4-9fa5-6fd3412fc86d"
+ "387ad1a2-4273-4f71-baf6-0798d6ea2414"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1193"
],
"x-ms-correlation-request-id": [
- "9c61e9d1-8990-43a8-b53b-4f40b6e90c7c"
+ "15ccebc1-7e51-4413-b0a6-3803029bc388"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235553Z:9c61e9d1-8990-43a8-b53b-4f40b6e90c7c"
+ "WESTUS2:20180309T194048Z:15ccebc1-7e51-4413-b0a6-3803029bc388"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -565,7 +592,7 @@
],
"Names": {
"CreateListUpdateDelete": [
- "certificateId2276"
+ "certificateId3159"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DelegationSettingTests/CreateUpdateReset.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DelegationSettingTests/CreateUpdateReset.json
index 00d40cc197345..34cdc397b9b3d 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DelegationSettingTests/CreateUpdateReset.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DelegationSettingTests/CreateUpdateReset.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "ce5367e2-2de7-4183-93f1-56a7e55fb5a8"
+ "6a14f806-c74a-43a4-911b-641a53731d17"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:21 GMT"
+ "Fri, 09 Mar 2018 19:51:09 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1e48000a-6ffc-49eb-9a62-6f2bc67fc182",
- "10c43823-b049-4f31-a522-5632dee5d97e"
+ "f21f621a-3b83-4314-a043-8695a6a0079d",
+ "27b6c294-7515-4d6c-8cde-b415e1e1a72c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1195"
],
"x-ms-correlation-request-id": [
- "a1a9543f-3c59-4a2a-a7e8-ff2a96a3785a"
+ "938880f5-36b5-451b-8bd2-b258ff945c53"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181521Z:a1a9543f-3c59-4a2a-a7e8-ff2a96a3785a"
+ "WESTUS2:20180309T195109Z:938880f5-36b5-451b-8bd2-b258ff945c53"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c1a94e0-8663-4ada-afa6-81e2633b679c"
+ "054316f2-e9c5-4388-b0e7-adae5d441d04"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:21 GMT"
+ "Fri, 09 Mar 2018 19:51:09 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b6f880f7-bdac-4df5-8609-61c2289d7de7"
+ "b591af25-fa8d-4b8b-83e3-654461e8cd24"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14991"
],
"x-ms-correlation-request-id": [
- "d4c64b52-bff6-4522-9668-e0812c50ed35"
+ "b8c99e95-33c2-429d-8ce5-777267a9945e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181521Z:d4c64b52-bff6-4522-9668-e0812c50ed35"
+ "WESTUS2:20180309T195110Z:b8c99e95-33c2-429d-8ce5-777267a9945e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,17 +148,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75ca1976-3b45-4b92-bd3f-44c2e56e3e24"
+ "9321d484-4ccb-4c3d-a5e9-ea9244a62759"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver2540/\",\r\n \"validationKey\": \"EncryptedAAAAABAA8EyjXqkWXBdfxaKsQ5FqjiAApPKUhhVWdu2C4rucqUmwe2KPLM3a7+C1p/AyIDfUFVJgAGsDCJWTwFPEnHvI1dSqEmt9ldGMLCsab+YwSqbrlyNo0rT3mEGES1QNHH0bKGYhiF7DHppcUzl39YqeLfcRfi314W+FSaklIoeZqITil4gNKgszBtKPUmFwWFD0HFT0LA==\",\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver2540/\",\r\n \"validationKey\": \"206UJGAZCefJdyASeIZtlQAbLTXOLxW21lMZrTQbf+41PBOFhlzBa0Eu2GqgFAtx0n7KhBiDKKs43k0M/1uzrQ==\",\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:21 GMT"
+ "Fri, 09 Mar 2018 19:51:10 GMT"
],
"Pragma": [
"no-cache"
@@ -179,7 +179,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAgCMdBgAAAAAAAA==\""
+ "\"AAAAAAAAgBEGAgAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -191,16 +191,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0defe832-bbf3-4944-a64c-bd6fabc7dc89"
+ "9908310c-a753-4a27-9bb3-f8cd0f474e02"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14990"
],
"x-ms-correlation-request-id": [
- "4b36f107-1100-432c-a911-eb1a91c629ae"
+ "048c3b1c-eaab-4f64-a15c-03ea37444e3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181522Z:4b36f107-1100-432c-a911-eb1a91c629ae"
+ "WESTUS2:20180309T195110Z:048c3b1c-eaab-4f64-a15c-03ea37444e3c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -215,17 +215,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52e468cf-23f7-4cef-9a9f-2541ac790111"
+ "1d300e1d-874a-47ca-90fc-982391f5526b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver6256/\",\r\n \"validationKey\": \"EncryptedAAAAABAA//ZVaqmD47e3Cu/gO4twQiAAVsC9Dct64dLMbsZ9StD6hOLwmJZXNQ/jzpbq7TrIWNZgAGOHOWAT4fsqjuJ+8zyL05crnzBHOhlYvfpTrq2SsoWh1gsnxjhBn09W/+Ny7HzjLlselnO0l+alqQzDegB5gXSfv8MI+DoeeiYlmh9KB5krS9aqK62sv2v81/Cu4om61Q==\",\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1312/\",\r\n \"validationKey\": \"6OH5d2LvEDLvArg0GNoDsshIUdVmt58+KWUisQkivKS8QdnPcsPKD5kN5eldLo3SXDsCRPNGIDBBu039zF4pzA==\",\r\n \"subscriptions\": {\r\n \"enabled\": false\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -237,7 +237,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:23 GMT"
+ "Fri, 09 Mar 2018 19:51:11 GMT"
],
"Pragma": [
"no-cache"
@@ -246,7 +246,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAgHIGAgAAAAAAAA==\""
+ "\"AAAAAAAAAIO6IgAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -258,16 +258,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7db12d8a-dbae-447a-83d9-9a15bd8a97c8"
+ "1750beb4-a279-4d9c-a822-2f86bd70c459"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14988"
],
"x-ms-correlation-request-id": [
- "49a21b13-dbc7-48c4-91f8-b8d6e01ee640"
+ "e239e844-9bce-4a4a-a4f0-2986c887a1be"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181523Z:49a21b13-dbc7-48c4-91f8-b8d6e01ee640"
+ "WESTUS2:20180309T195112Z:e239e844-9bce-4a4a-a4f0-2986c887a1be"
],
"X-Content-Type-Options": [
"nosniff"
@@ -279,7 +279,7 @@
"RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation?api-version=2018-01-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wb3J0YWxzZXR0aW5ncy9kZWxlZ2F0aW9uP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"url\": \"https://delegationserver6256/\",\r\n \"validationKey\": \"206UJGAZCefJdyASeIZtlQAbLTXOLxW21lMZrTQbf+41PBOFhlzBa0Eu2GqgFAtx0n7KhBiDKKs43k0M/1uzrQ==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1312/\",\r\n \"validationKey\": \"6OH5d2LvEDLvArg0GNoDsshIUdVmt58+KWUisQkivKS8QdnPcsPKD5kN5eldLo3SXDsCRPNGIDBBu039zF4pzA==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -288,17 +288,17 @@
"299"
],
"x-ms-client-request-id": [
- "db4c46ef-2631-4723-af7b-5ca94515c64a"
+ "72c62247-9894-4888-ac46-14600a4ce026"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver6256/\",\r\n \"validationKey\": \"EncryptedAAAAABAA//ZVaqmD47e3Cu/gO4twQiAAVsC9Dct64dLMbsZ9StD6hOLwmJZXNQ/jzpbq7TrIWNZgAGOHOWAT4fsqjuJ+8zyL05crnzBHOhlYvfpTrq2SsoWh1gsnxjhBn09W/+Ny7HzjLlselnO0l+alqQzDegB5gXSfv8MI+DoeeiYlmh9KB5krS9aqK62sv2v81/Cu4om61Q==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/delegation\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"delegation\",\r\n \"properties\": {\r\n \"url\": \"https://delegationserver1312/\",\r\n \"validationKey\": \"6OH5d2LvEDLvArg0GNoDsshIUdVmt58+KWUisQkivKS8QdnPcsPKD5kN5eldLo3SXDsCRPNGIDBBu039zF4pzA==\",\r\n \"subscriptions\": {\r\n \"enabled\": true\r\n },\r\n \"userRegistration\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -310,7 +310,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:22 GMT"
+ "Fri, 09 Mar 2018 19:51:11 GMT"
],
"Pragma": [
"no-cache"
@@ -319,7 +319,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAgO3eAwAAAAAAAA==\""
+ "\"AAAAAAAAANTyIgAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -331,16 +331,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "74f4d7fe-bf53-4607-9fc1-02b133d16af4"
+ "0b412a0e-ddb7-4cf8-87a5-12fc61af3a62"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1194"
],
"x-ms-correlation-request-id": [
- "3b8eb623-6884-40c0-89aa-11f43bfb50da"
+ "0f89fa65-59da-469f-b7c6-5aa6989d086e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181523Z:3b8eb623-6884-40c0-89aa-11f43bfb50da"
+ "WESTUS2:20180309T195111Z:0f89fa65-59da-469f-b7c6-5aa6989d086e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -355,14 +355,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "825e3060-b270-43a9-ae3b-3c1fe8c7027a"
+ "f6812be5-5b88-4241-9100-694bd2684fb9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -377,13 +377,13 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:22 GMT"
+ "Fri, 09 Mar 2018 19:51:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAgO3eAwAAAAAAAA==\""
+ "\"AAAAAAAAANTyIgAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "987c818c-6571-4a53-9187-6836b3f264a6"
+ "81ce451c-1875-4327-b937-b49e8e59844f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14989"
],
"x-ms-correlation-request-id": [
- "0e8a3243-9254-4a87-8b44-f6c9bd452425"
+ "aceb7846-ae5c-455e-87f7-afe6bcf67f27"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181523Z:0e8a3243-9254-4a87-8b44-f6c9bd452425"
+ "WESTUS2:20180309T195112Z:aceb7846-ae5c-455e-87f7-afe6bcf67f27"
],
"X-Content-Type-Options": [
"nosniff"
@@ -422,17 +422,17 @@
"142"
],
"x-ms-client-request-id": [
- "bd4a5316-bf21-4b3a-afa0-cb89e6c05dee"
+ "83db7374-885d-4d87-8913-43856db53236"
],
"If-Match": [
- "\"AAAAAAAAgO3eAwAAAAAAAA==\""
+ "\"AAAAAAAAANTyIgAAAAAAAA==\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -444,7 +444,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:23 GMT"
+ "Fri, 09 Mar 2018 19:51:11 GMT"
],
"Pragma": [
"no-cache"
@@ -456,16 +456,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "51362252-9bb2-422d-83bc-3ef7585e31f0"
+ "4bb0bf33-696b-4b85-8ce0-7ebe997e95cd"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1193"
],
"x-ms-correlation-request-id": [
- "9c35ac3b-4cb7-4762-9673-a6fa20b9d760"
+ "b394fb1c-bc9f-47ba-b966-71b669aa2bd6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181523Z:9c35ac3b-4cb7-4762-9673-a6fa20b9d760"
+ "WESTUS2:20180309T195112Z:b394fb1c-bc9f-47ba-b966-71b669aa2bd6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -486,7 +486,7 @@
"187"
],
"x-ms-client-request-id": [
- "98ff4636-35eb-4939-b1fa-ea1115ae5a75"
+ "ea03dae0-9447-42de-886c-5e12a0edca0c"
],
"If-Match": [
"*"
@@ -496,7 +496,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -508,7 +508,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 18:15:23 GMT"
+ "Fri, 09 Mar 2018 19:51:12 GMT"
],
"Pragma": [
"no-cache"
@@ -520,16 +520,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2268cffb-ed5e-4b02-a3b2-2d3ef0c78534"
+ "1bced20f-c2d8-42c0-92cb-e03c5de43e19"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1192"
],
"x-ms-correlation-request-id": [
- "0524d1fd-24e9-424b-8dd2-adc4ded63098"
+ "7f8bd217-70ac-4564-9957-f2454e339910"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T181523Z:0524d1fd-24e9-424b-8dd2-adc4ded63098"
+ "WESTUS2:20180309T195112Z:7f8bd217-70ac-4564-9957-f2454e339910"
],
"X-Content-Type-Options": [
"nosniff"
@@ -540,7 +540,7 @@
],
"Names": {
"CreateUpdateReset": [
- "delegationServer6256"
+ "delegationServer1312"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DiagnosticTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DiagnosticTests/CreateListUpdateDelete.json
index ceee1d1e3ebb1..f38ba8ac79c72 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DiagnosticTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.DiagnosticTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "ecfc81ff-b231-4f3d-b975-c6bc8e26e0ca"
+ "1d3b40a5-ccb5-423f-a0e5-eb421d4afc9b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:04 GMT"
+ "Fri, 09 Mar 2018 19:51:38 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "321bad21-7117-48db-83c2-4f08be10f976",
- "4b998243-e361-4af9-a3f9-ac43cd09238c"
+ "e37eb8bc-3593-49b1-855b-933835cfc823",
+ "d69de2e5-3a04-4abb-b49e-80cf2775ba4e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1192"
],
"x-ms-correlation-request-id": [
- "9dde7740-37bc-406e-a16a-7206b83a5dd9"
+ "14c7800e-0ea1-43f4-98ef-42c5f7a7b30d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055204Z:9dde7740-37bc-406e-a16a-7206b83a5dd9"
+ "WESTUS2:20180309T195138Z:14c7800e-0ea1-43f4-98ef-42c5f7a7b30d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc52a1a0-721d-4843-93d3-a9dc5bf909d7"
+ "841f1de4-9487-43ef-a4ad-5a45d7d74497"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:04 GMT"
+ "Fri, 09 Mar 2018 19:51:38 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "129b8943-bc04-4550-b1ae-4bb2ad8e6eea"
+ "f659cba6-ee43-4eeb-873f-dbe5216d845a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14989"
],
"x-ms-correlation-request-id": [
- "88f4eb42-f00e-4667-9197-165dd0935e8e"
+ "744b3175-61d2-420e-900d-c28a2378dd0f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055204Z:88f4eb42-f00e-4667-9197-165dd0935e8e"
+ "WESTUS2:20180309T195138Z:744b3175-61d2-420e-900d-c28a2378dd0f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "db6c0d73-4ce2-45e6-b106-45d950f611ca"
+ "54376272-08e6-4d59-a1b6-7d1fa914bdb5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:04 GMT"
+ "Fri, 09 Mar 2018 19:51:38 GMT"
],
"Pragma": [
"no-cache"
@@ -182,23 +188,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f0255872-6686-4e81-aa2b-d58a207933ff"
+ "abccd8ed-8ec8-4859-92d9-f038802ddb10"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14988"
],
"x-ms-correlation-request-id": [
- "27d8b091-4a91-477e-8c8f-ec4ba8ece638"
+ "8587cda2-2e6e-4f42-ba7c-14842361e128"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055205Z:27d8b091-4a91-477e-8c8f-ec4ba8ece638"
+ "WESTUS2:20180309T195139Z:8587cda2-2e6e-4f42-ba7c-14842361e128"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
"RequestHeaders": {
@@ -209,20 +218,20 @@
"49"
],
"x-ms-client-request-id": [
- "b4426027-ba29-49a0-8ce9-0e7aaeaea4c1"
+ "dd795e0e-6884-4bbf-a55e-a80dec898399"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"diagnoticId627\",\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics\",\r\n \"name\": \"diagnoticId4970\",\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "321"
+ "323"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -234,13 +243,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:05 GMT"
+ "Fri, 09 Mar 2018 19:51:39 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANRM=\""
+ "\"AAAAAAAAOMM=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,25 +258,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "787dcce7-2eb7-4f05-9c89-0b96277e9c3b"
+ "345952c8-da8c-43e9-a821-07c618470bf0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1191"
],
"x-ms-correlation-request-id": [
- "259cdff9-5665-49c7-a7f4-2a86110806f4"
+ "24ac1ae8-99dc-4d67-8ef0-a8628f8bf1fe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055205Z:259cdff9-5665-49c7-a7f4-2a86110806f4"
+ "WESTUS2:20180309T195139Z:24ac1ae8-99dc-4d67-8ef0-a8628f8bf1fe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjA2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"851001a7-d786-4ceb-9150-ff6588941895\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"135104b7-70d9-41e6-900d-dfc9f179908f\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -276,20 +288,20 @@
"167"
],
"x-ms-client-request-id": [
- "5e478a42-9881-4dcd-9fe7-bce79fbd8182"
+ "540870ce-9d88-4982-bcc7-2d7b09d9a4b9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights5963\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights5963\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5a8bb78850f4b80c404ecc3f}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2068\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"appInsights2068\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5aa2e5cb50f4b800a0f44336}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "495"
+ "518"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -301,13 +313,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:06 GMT"
+ "Fri, 09 Mar 2018 19:51:39 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANRc=\""
+ "\"AAAAAAAAOMc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -316,41 +328,44 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c25b9716-8847-407d-abf9-e28d5fcd65a3"
+ "51635906-0570-4c4f-991e-2dcb04def211"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1190"
],
"x-ms-correlation-request-id": [
- "e6def146-a3ca-44a8-9694-5faf002254da"
+ "39353570-c55f-4a65-9eae-439a3abbc11d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055206Z:e6def146-a3ca-44a8-9694-5faf002254da"
+ "WESTUS2:20180309T195140Z:39353570-c55f-4a65-9eae-439a3abbc11d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNy9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzAvbG9nZ2Vycy9hcHBJbnNpZ2h0czIwNjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2745d3f-fa51-4053-a02f-632be5ea3400"
+ "3826beec-f56d-4a40-b8a0-b64cf3742dbd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627/loggers/appInsights5963\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics/loggers\",\r\n \"name\": \"appInsights5963\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{5a8bb78850f4b80c404ecc3e}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970/loggers/appInsights2068\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics/loggers\",\r\n \"name\": \"appInsights2068\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{5aa2e5cb50f4b800a0f44335}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "515"
+ "539"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -362,13 +377,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:06 GMT"
+ "Fri, 09 Mar 2018 19:51:40 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANRg=\""
+ "\"AAAAAAAAOMo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -377,38 +392,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8dffc5b3-75d8-4c6e-a2aa-0deb18345d37"
+ "56ca44f9-bf64-4533-9550-9ee73d8fa511"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1189"
],
"x-ms-correlation-request-id": [
- "b1b52031-8756-4b48-b682-c5a6868f30fc"
+ "0a5118fd-30ac-4e27-9767-350925c4ebf1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055206Z:b1b52031-8756-4b48-b682-c5a6868f30fc"
+ "WESTUS2:20180309T195140Z:0a5118fd-30ac-4e27-9767-350925c4ebf1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627/loggers?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNy9sb2dnZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970/loggers?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzAvbG9nZ2Vycz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08c5e488-bda1-4a7f-95bf-66ba507f5c0e"
+ "4ae584c9-23f8-4f05-b50c-cf358b17300f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627/loggers/appInsights5963\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics/loggers\",\r\n \"name\": \"appInsights5963\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{5a8bb78850f4b80c404ecc3e}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970/loggers/appInsights2068\",\r\n \"type\": \"Microsoft.ApiManagement/service/diagnostics/loggers\",\r\n \"name\": \"appInsights2068\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": null,\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{5aa2e5cb50f4b800a0f44335}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -420,7 +438,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:06 GMT"
+ "Fri, 09 Mar 2018 19:51:41 GMT"
],
"Pragma": [
"no-cache"
@@ -438,35 +456,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a88b5e7-f726-41e8-98dd-c4f717852b8a"
+ "b162cb7c-b726-482c-ae37-cb18bc4ce9c1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14987"
],
"x-ms-correlation-request-id": [
- "583cab17-97ae-406b-a0c0-69c03c6ef347"
+ "cc832d33-791f-4d83-bd5b-0e39f3ca865f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055207Z:583cab17-97ae-406b-a0c0-69c03c6ef347"
+ "WESTUS2:20180309T195141Z:cc832d33-791f-4d83-bd5b-0e39f3ca865f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNy9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzAvbG9nZ2Vycy9hcHBJbnNpZ2h0czIwNjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e66d39ed-b6b9-4966-81eb-b601bfec4caa"
+ "c2a23c7e-b0b0-4b42-b82a-98a7518d29c7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -481,7 +502,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:06 GMT"
+ "Fri, 09 Mar 2018 19:51:41 GMT"
],
"Pragma": [
"no-cache"
@@ -493,35 +514,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4919e204-48e6-4ed4-93e3-7584038d67bf"
+ "7b10bd5c-0541-4b5f-9489-b9be7731ac1b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1188"
],
"x-ms-correlation-request-id": [
- "c65a7553-9cfc-4355-bbea-9bc9a66f404b"
+ "87e68fb4-078c-4251-a543-bee7467c0ec0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055207Z:c65a7553-9cfc-4355-bbea-9bc9a66f404b"
+ "WESTUS2:20180309T195141Z:87e68fb4-078c-4251-a543-bee7467c0ec0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNy9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzAvbG9nZ2Vycy9hcHBJbnNpZ2h0czIwNjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e02582e-a356-485c-a5ac-92701e710867"
+ "1898749a-dbc0-4bc1-af49-f7ff25d3d6f1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -536,7 +560,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:07 GMT"
+ "Fri, 09 Mar 2018 19:51:41 GMT"
],
"Pragma": [
"no-cache"
@@ -548,35 +572,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5b205084-4496-426e-a6bb-87ff4b74ea59"
+ "ca82ca70-0b06-4f61-8303-8e279937638b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14986"
],
"x-ms-correlation-request-id": [
- "e678d783-c9d7-498d-a7ce-5d8d05274b06"
+ "76761301-c07b-457e-9235-e1fd8114d9b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055207Z:e678d783-c9d7-498d-a7ce-5d8d05274b06"
+ "WESTUS2:20180309T195142Z:76761301-c07b-457e-9235-e1fd8114d9b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39f66bd8-a09c-4415-8927-6cc4fde3694e"
+ "424eadf7-e798-4e56-a7a9-234ae41a3baf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -591,13 +618,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:07 GMT"
+ "Fri, 09 Mar 2018 19:51:42 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANRw=\""
+ "\"AAAAAAAAOM4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -606,35 +633,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "68e6c58a-a63e-4b87-90e7-fcea81a3cc22"
+ "9d4181fb-fa7e-4972-b03c-3a44b1e52f14"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14985"
],
"x-ms-correlation-request-id": [
- "95d1eacb-f603-4e83-ac55-2bebd15f1806"
+ "a6879cb8-82bf-470a-981c-ad902c705fb9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055207Z:95d1eacb-f603-4e83-ac55-2bebd15f1806"
+ "WESTUS2:20180309T195142Z:a6879cb8-82bf-470a-981c-ad902c705fb9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b20a413b-eeac-4c01-a9c0-bdb74313418d"
+ "2054cf01-0b26-481a-9835-96253bee392a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -649,7 +679,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:07 GMT"
+ "Fri, 09 Mar 2018 19:51:42 GMT"
],
"Pragma": [
"no-cache"
@@ -661,38 +691,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18ec9f97-1bb7-4a36-baf1-4f3ea20df3b9"
+ "5e30d2c8-6278-49bd-a6a4-7e033b49f122"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14984"
],
"x-ms-correlation-request-id": [
- "db23ccf9-3acd-4b40-b088-1de9d2ee7e8b"
+ "05a66ad2-d556-4d73-bd0c-13d0a7a3b613"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055208Z:db23ccf9-3acd-4b40-b088-1de9d2ee7e8b"
+ "WESTUS2:20180309T195142Z:05a66ad2-d556-4d73-bd0c-13d0a7a3b613"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e3eac1c-a8a7-4396-b1f7-29bf228294af"
+ "500ebc62-3edb-41ca-9b7f-002c39ee79c3"
],
"If-Match": [
- "\"AAAAAAAANRw=\""
+ "\"AAAAAAAAOM4=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -707,7 +740,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:07 GMT"
+ "Fri, 09 Mar 2018 19:51:42 GMT"
],
"Pragma": [
"no-cache"
@@ -719,28 +752,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a5b93898-4108-476f-8369-782350ac246e"
+ "95a87e33-7964-47b1-b8b5-635651d71ef0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1187"
],
"x-ms-correlation-request-id": [
- "331cbfa2-aed9-426b-9968-b35220819b42"
+ "0609895f-a852-4d15-947e-b05016db9f57"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055207Z:331cbfa2-aed9-426b-9968-b35220819b42"
+ "WESTUS2:20180309T195142Z:0609895f-a852-4d15-947e-b05016db9f57"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId627?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDYyNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/diagnostics/diagnoticId4970?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9kaWFnbm9zdGljcy9kaWFnbm90aWNJZDQ5NzA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1bf344a-d4d6-4fef-a1ab-1968c9bf2ce3"
+ "d13e49e8-dd9e-4431-a8c7-a933664e2028"
],
"If-Match": [
"*"
@@ -750,7 +786,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -762,7 +798,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:08 GMT"
+ "Fri, 09 Mar 2018 19:51:43 GMT"
],
"Pragma": [
"no-cache"
@@ -774,35 +810,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6dfab19d-01d6-4d7d-aa94-a47b80427655"
+ "1ef28bee-18d2-4f73-b7e5-83dce1526c57"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1184"
],
"x-ms-correlation-request-id": [
- "cb683f7f-9493-4238-a8f8-75d0d5600c84"
+ "a2b1de75-508a-4093-9387-b7772598e9ca"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055209Z:cb683f7f-9493-4238-a8f8-75d0d5600c84"
+ "WESTUS2:20180309T195144Z:a2b1de75-508a-4093-9387-b7772598e9ca"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjA2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "840af0ba-ea97-4daa-a480-4d9c2639ce03"
+ "3484dcee-5dae-46de-b138-9670f4df9e30"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -817,13 +856,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:07 GMT"
+ "Fri, 09 Mar 2018 19:51:42 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANRc=\""
+ "\"AAAAAAAAOMc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -832,35 +871,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34c258bc-9d23-4106-b497-b594d88ec63d"
+ "ee7ac247-7534-4225-978d-3517668677a7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14983"
],
"x-ms-correlation-request-id": [
- "6a6732b1-7399-4288-995a-de6ab2ec3edc"
+ "8ddf8da1-75dd-4b67-bcf6-71898c126aac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055208Z:6a6732b1-7399-4288-995a-de6ab2ec3edc"
+ "WESTUS2:20180309T195142Z:8ddf8da1-75dd-4b67-bcf6-71898c126aac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjA2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87c459eb-4fcf-45f6-9f70-7158169a1333"
+ "59024ec8-4a59-4fd1-9892-75ccc5aeabdc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -875,7 +917,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:08 GMT"
+ "Fri, 09 Mar 2018 19:51:43 GMT"
],
"Pragma": [
"no-cache"
@@ -887,38 +929,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "54655f69-c2e8-4839-99c4-4f1fdc542f7e"
+ "61ce0d9b-6efb-440a-be0a-c280c6151db2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14982"
],
"x-ms-correlation-request-id": [
- "056e156d-334f-439f-9b01-e7af07c44028"
+ "c7e0c1be-4b17-430d-bd3e-9c53831db232"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055208Z:056e156d-334f-439f-9b01-e7af07c44028"
+ "WESTUS2:20180309T195143Z:c7e0c1be-4b17-430d-bd3e-9c53831db232"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjA2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fae9a4df-6a37-4eb2-b0f7-afaf0729ddbe"
+ "4d2500be-35ed-4ba3-9160-c0b79bd14092"
],
"If-Match": [
- "\"AAAAAAAANRc=\""
+ "\"AAAAAAAAOMc=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -933,7 +978,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:08 GMT"
+ "Fri, 09 Mar 2018 19:51:43 GMT"
],
"Pragma": [
"no-cache"
@@ -945,28 +990,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b046ff4f-913b-49cf-8c32-14d7947eeece"
+ "cd37a048-d2ee-4ac1-a1da-da640a22f266"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1186"
],
"x-ms-correlation-request-id": [
- "ef4dfd83-8d7e-42c4-8879-0568b5ea5592"
+ "02e1f8b8-2ee5-4919-aded-1c422b4bad2f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055208Z:ef4dfd83-8d7e-42c4-8879-0568b5ea5592"
+ "WESTUS2:20180309T195143Z:02e1f8b8-2ee5-4919-aded-1c422b4bad2f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights5963?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzNTk2Mz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/appInsights2068?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcEluc2lnaHRzMjA2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34d22b1d-c289-460e-a86a-90824a369d3e"
+ "9dd833c4-3cb0-4b66-aeda-0e2220bdb26d"
],
"If-Match": [
"*"
@@ -976,7 +1024,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -988,7 +1036,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:52:08 GMT"
+ "Fri, 09 Mar 2018 19:51:43 GMT"
],
"Pragma": [
"no-cache"
@@ -1000,16 +1048,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "adf6e829-f2e0-45dc-9390-a69b214596d7"
+ "823d2d2b-2922-473b-941e-bd500ef85990"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1185"
],
"x-ms-correlation-request-id": [
- "fde43987-7a54-41ed-83bd-7daf2434e665"
+ "cb1deec8-15a9-464c-8f2c-0f4411ef2bc1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055209Z:fde43987-7a54-41ed-83bd-7daf2434e665"
+ "WESTUS2:20180309T195143Z:cb1deec8-15a9-464c-8f2c-0f4411ef2bc1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -1017,11 +1068,11 @@
],
"Names": {
"CreateListUpdateDelete": [
- "diagnoticId627",
- "appInsights5963"
+ "diagnoticId4970",
+ "appInsights2068"
],
"appInsights": [
- "851001a7-d786-4ceb-9150-ff6588941895"
+ "135104b7-70d9-41e6-900d-dfc9f179908f"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.EmailTemplateTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.EmailTemplateTests/CreateListUpdateDelete.json
index 4d0fa59465667..f8a17c46cb5bd 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.EmailTemplateTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.EmailTemplateTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "28b80064-db33-46cd-9ab4-be9b30ee742b"
+ "e6597b6a-8615-44e8-bddf-848a3c93fd62"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:13 GMT"
+ "Fri, 09 Mar 2018 19:55:50 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c57c7e98-8976-4668-a19a-9876ba213122",
- "82026211-823a-4608-8083-88baec943608"
+ "a1c643c5-635b-4080-8e58-bf7eeecba379",
+ "8960ff17-0b7e-4bbf-9590-ad150deb387f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1194"
],
"x-ms-correlation-request-id": [
- "8620ecec-1e91-459d-99c7-00d93d10dbb2"
+ "5b5550cf-0fcf-4111-8bbf-6e0d9aa7f342"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235914Z:8620ecec-1e91-459d-99c7-00d93d10dbb2"
+ "WESTUS2:20180309T195551Z:5b5550cf-0fcf-4111-8bbf-6e0d9aa7f342"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "88bfee1a-5c28-4e62-9eaf-b2e6fdcd17ac"
+ "f0310d5d-6572-4fe7-bd37-216e06a403be"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:13 GMT"
+ "Fri, 09 Mar 2018 19:55:50 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d0ed37ee-62f1-4cc9-9f7f-dae9ee5c5bef"
+ "972f0386-86e5-4476-ace2-b3f242041fff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14990"
],
"x-ms-correlation-request-id": [
- "2f86b25e-1ab8-4ad8-a544-05e8f39de53b"
+ "dfbb246a-7629-4844-9609-20e658b6022b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235914Z:2f86b25e-1ab8-4ad8-a544-05e8f39de53b"
+ "WESTUS2:20180309T195551Z:dfbb246a-7629-4844-9609-20e658b6022b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,17 +148,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e92ecf44-6da6-45bc-baf2-ee2938d8d736"
+ "de531df6-239d-43f6-b7b4-cfc7ab6845c3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n
\\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/AccountClosedDeveloper\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"AccountClosedDeveloper\",\r\n \"properties\": {\r\n \"subject\": \"Thank you for using the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n On behalf of $OrganizationName and our customers we thank you for giving us a try. Your $OrganizationName API account is now closed.\\r\\n
\\r\\n Thank you,
\\r\\n Your $OrganizationName Team
\\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Developer farewell letter\",\r\n \"description\": \"Developers receive this farewell email after they close their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are approaching an API quota limit\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Greetings $DevFirstName $DevLastName!
\\r\\n \\r\\n You are approaching the quota limit on you subscription to the $ProdName product (primary key $SubPrimaryKey).\\r\\n #if ($QuotaResetDate != \\\"\\\")\\r\\n This quota will be renewed on $QuotaResetDate.\\r\\n #else\\r\\n This quota will not be renewed.\\r\\n #end\\r\\n
\\r\\n Below are details on quota usage for the subscription:
\\r\\n \\r\\n
\\r\\n \\r\\n Quota Scope \\r\\n Calls \\r\\n Call Quota \\r\\n Bandwidth \\r\\n Bandwidth Quota \\r\\n \\r\\n \\r\\n \\r\\n Subscription \\r\\n \\r\\n #if ($CallsAlert == true)\\r\\n $Calls \\r\\n #else\\r\\n $Calls\\r\\n #end\\r\\n \\r\\n $CallQuota \\r\\n \\r\\n #if ($BandwidthAlert == true)\\r\\n $Bandwidth \\r\\n #else\\r\\n $Bandwidth\\r\\n #end\\r\\n \\r\\n $BandwidthQuota \\r\\n \\r\\n #foreach ($api in $Apis)\\r\\n API: $api.Name \\r\\n #if ($api.CallsAlert == true)\\r\\n $api.Calls \\r\\n #else\\r\\n $api.Calls\\r\\n #end\\r\\n $api.CallQuota \\r\\n #if ($api.BandwidthAlert == true)\\r\\n $api.Bandwidth \\r\\n #else\\r\\n $api.Bandwidth\\r\\n #end\\r\\n $api.BandwidthQuota \\r\\n #foreach ($operation in $api.Operations)\\r\\n Operation: $operation.Name \\r\\n #if ($operation.CallsAlert == true)\\r\\n $operation.Calls \\r\\n #else\\r\\n $operation.Calls\\r\\n #end\\r\\n $operation.CallQuota \\r\\n #if ($operation.BandwidthAlert == true)\\r\\n $operation.Bandwidth \\r\\n #else\\r\\n $operation.Bandwidth\\r\\n #end\\r\\n $operation.BandwidthQuota \\r\\n #end\\r\\n #end\\r\\n \\r\\n
\\r\\n \\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Developer quota limit approaching notification\",\r\n \"description\": \"Developers receive this email to alert them when they are approaching a quota limit.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubPrimaryKey\",\r\n \"title\": \"Primary Subscription key\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"QuotaResetDate\",\r\n \"title\": \"Quota reset date\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Welcome to the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n Welcome to $OrganizationName API! \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n Your $OrganizationName API program registration is completed and we are thrilled to have you as a customer. Here are a few important bits of information for your reference:
\\r\\n \\r\\n \\r\\n #if ($IdentityProvider == \\\"Basic\\\")\\r\\n \\r\\n Please use the following username when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername \\r\\n #else\\r\\n \\r\\n Please use the following $IdentityProvider account when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername \\r\\n #end\\r\\n \\r\\n \\r\\n \\r\\n We will direct all communications to the following email address :\\r\\n \\r\\n \\r\\n \\r\\n $DevEmail \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n Best of luck in your API pursuits!
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Developer welcome letter\",\r\n \"description\": \"Developers receive this “welcome” email after they confirm their new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevUsername\",\r\n \"title\": \"Developer user name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IdentityProvider\",\r\n \"title\": \"Identity Provider selected by Organization\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/EmailChangeIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"EmailChangeIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm the new email associated with your $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n You are receiving this email because you made a change to the email address on your $OrganizationName API account.
\\r\\n Please click on the following link to confirm the change:
\\r\\n \\r\\n \\r\\n $ConfirmUrl \\r\\n \\r\\n
\\r\\n If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Email change confirmation\",\r\n \"description\": \"Developers receive this email to confirm a new e-mail address after they change their existing one associated with their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer confirmation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/InviteUserNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"InviteUserNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are invited to join the $OrganizationName developer network\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n Your account has been created. Please follow the link below to visit the $OrganizationName developer portal and claim it:\\r\\n
\\r\\n \\r\\n $ConfirmUrl \\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Invite user\",\r\n \"description\": \"An e-mail invitation to create an account, sent on request by API publishers.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Confirmation link\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewCommentNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewCommentNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"$IssueName issue has a new comment\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n This is a brief note to let you know that $CommenterFirstName $CommenterLastName made the following comment on the issue $IssueName you created:
\\r\\n $CommentText
\\r\\n \\r\\n To view the issue on the developer portal click here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"New comment added to an issue\",\r\n \"description\": \"Developers receive this email when someone comments on the issue they created on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterFirstName\",\r\n \"title\": \"Commenter first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterLastName\",\r\n \"title\": \"Commenter last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommentText\",\r\n \"title\": \"Comment text\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ConfirmSignUpIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ConfirmSignUpIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm your new $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n Thank you for joining the $OrganizationName API program! We host a growing number of cool APIs and strive to provide an awesome experience for API developers.
\\r\\n First order of business is to activate your account and get you going. To that end, please click on the following link:
\\r\\n \\r\\n \\r\\n $ConfirmUrl \\r\\n \\r\\n
\\r\\n If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"New developer account confirmation\",\r\n \"description\": \"Developers receive this email to confirm their e-mail address after they sign up for a new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer activation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewIssueNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewIssueNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your request $IssueName was received\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n Thank you for contacting us. Our API team will review your issue and get back to you soon.
\\r\\n \\r\\n Click this link to view or edit your request.\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"New issue received\",\r\n \"description\": \"This email is sent to developers after they create a new topic on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PurchaseDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PurchaseDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription to the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Greetings $DevFirstName $DevLastName!
\\r\\n \\r\\n Thank you for subscribing to the $ProdName and welcome to the $OrganizationName developer community. We are delighted to have you as part of the team and are looking forward to the amazing applications you will build using our API!\\r\\n
\\r\\n Below are a few subscription details for your reference:
\\r\\n \\r\\n
\\r\\n #if ($SubStartDate != \\\"\\\")\\r\\n Start date: $SubStartDate \\r\\n #end\\r\\n \\r\\n #if ($SubTerm != \\\"\\\")\\r\\n Subscription term: $SubTerm \\r\\n #end\\r\\n \\r\\n \\r\\n \\r\\n Visit the developer profile area to manage your subscription and subscription keys\\r\\n
\\r\\n A couple of pointers to help get you started:
\\r\\n \\r\\n \\r\\n Learn about the API \\r\\n \\r\\n
\\r\\n The API documentation provides all information necessary to make a request and to process a response. Code samples are provided per API operation in a variety of languages. Moreover, an interactive console allows making API calls directly from the developer portal without writing any code.
\\r\\n \\r\\n \\r\\n Feature your app in the app gallery \\r\\n \\r\\n
\\r\\n You can publish your application on our gallery for increased visibility to potential new users.
\\r\\n \\r\\n \\r\\n Stay in touch \\r\\n \\r\\n
\\r\\n \\r\\n If you have an issue, a question, a suggestion, a request, or if you just want to tell us something, go to the Issues page on the developer portal and create a new topic.\\r\\n
\\r\\n Happy hacking,
\\r\\n The $OrganizationName API Team
\\r\\n $DevPortalUrl \\r\\n \\r\\n\",\r\n \"title\": \"New subscription activated\",\r\n \"description\": \"Developers receive this acknowledgement email after subscribing to a product.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubStartDate\",\r\n \"title\": \"Subscription start date\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubTerm\",\r\n \"title\": \"Subscription term\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PasswordResetIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Your password change request\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n You are receiving this email because you requested to change the password on your $OrganizationName API account.
\\r\\n Please click on the link below and follow instructions to create your new password:
\\r\\n \\r\\n \\r\\n $ConfirmUrl \\r\\n \\r\\n
\\r\\n If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password change confirmation\",\r\n \"description\": \"Developers receive this email when they request a password change of their account. The purpose of the email is to verify that the account owner made the request and to provide a one-time perishable URL for changing the password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer new password instruction URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PasswordResetByAdminNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetByAdminNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your password was reset\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n The password of your $OrganizationName API account has been reset, per your request.
\\r\\n \\r\\n Your new password is: $DevPassword
\\r\\n Please make sure to change it next time you sign in.
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password reset by publisher notification (Password reset by admin)\",\r\n \"description\": \"Developers receive this email when the publisher resets their password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPassword\",\r\n \"title\": \"New Developer password\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/RejectDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RejectDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We would like to inform you that we reviewed your subscription request for the $ProdName .\\r\\n
\\r\\n #if ($SubDeclineReason == \\\"\\\")\\r\\n Regretfully, we were unable to approve it, as subscriptions are temporarily suspended at this time.
\\r\\n #else\\r\\n \\r\\n Regretfully, we were unable to approve it at this time for the following reason:\\r\\n
$SubDeclineReason
\\r\\n #end\\r\\n We truly appreciate your interest.
All the best,
The $OrganizationName API Team
$DevPortalUrl \\r\\n\",\r\n \"title\": \"Subscription request declined\",\r\n \"description\": \"This email is sent to developers when their subscription requests for products requiring publisher approval is declined.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubDeclineReason\",\r\n \"title\": \"Reason for declining subscription\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/RequestDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RequestDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n Thank you for your interest in our $ProdName API product!\\r\\n
\\r\\n \\r\\n We were delighted to receive your subscription request. We will promptly review it and get back to you at $DevEmail .\\r\\n
\\r\\n Thank you,
\\r\\n The $OrganizationName API Team
\\r\\n $DevPortalUrl \\r\\n \\r\\n\",\r\n \"title\": \"Subscription request received\",\r\n \"description\": \"This email is sent to developers to acknowledge receipt of their subscription requests for products requiring publisher approval.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/AccountClosedDeveloper\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"AccountClosedDeveloper\",\r\n \"properties\": {\r\n \"subject\": \"Thank you for using the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n On behalf of $OrganizationName and our customers we thank you for giving us a try. Your $OrganizationName API account is now closed.\\r\\n
\\r\\n Thank you,
\\r\\n Your $OrganizationName Team
\\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Developer farewell letter\",\r\n \"description\": \"Developers receive this farewell email after they close their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"QuotaLimitApproachingDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are approaching an API quota limit\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Greetings $DevFirstName $DevLastName!
\\r\\n \\r\\n You are approaching the quota limit on you subscription to the $ProdName product (primary key $SubPrimaryKey).\\r\\n #if ($QuotaResetDate != \\\"\\\")\\r\\n This quota will be renewed on $QuotaResetDate.\\r\\n #else\\r\\n This quota will not be renewed.\\r\\n #end\\r\\n
\\r\\n Below are details on quota usage for the subscription:
\\r\\n \\r\\n
\\r\\n \\r\\n Quota Scope \\r\\n Calls \\r\\n Call Quota \\r\\n Bandwidth \\r\\n Bandwidth Quota \\r\\n \\r\\n \\r\\n \\r\\n Subscription \\r\\n \\r\\n #if ($CallsAlert == true)\\r\\n $Calls \\r\\n #else\\r\\n $Calls\\r\\n #end\\r\\n \\r\\n $CallQuota \\r\\n \\r\\n #if ($BandwidthAlert == true)\\r\\n $Bandwidth \\r\\n #else\\r\\n $Bandwidth\\r\\n #end\\r\\n \\r\\n $BandwidthQuota \\r\\n \\r\\n #foreach ($api in $Apis)\\r\\n API: $api.Name \\r\\n #if ($api.CallsAlert == true)\\r\\n $api.Calls \\r\\n #else\\r\\n $api.Calls\\r\\n #end\\r\\n $api.CallQuota \\r\\n #if ($api.BandwidthAlert == true)\\r\\n $api.Bandwidth \\r\\n #else\\r\\n $api.Bandwidth\\r\\n #end\\r\\n $api.BandwidthQuota \\r\\n #foreach ($operation in $api.Operations)\\r\\n Operation: $operation.Name \\r\\n #if ($operation.CallsAlert == true)\\r\\n $operation.Calls \\r\\n #else\\r\\n $operation.Calls\\r\\n #end\\r\\n $operation.CallQuota \\r\\n #if ($operation.BandwidthAlert == true)\\r\\n $operation.Bandwidth \\r\\n #else\\r\\n $operation.Bandwidth\\r\\n #end\\r\\n $operation.BandwidthQuota \\r\\n #end\\r\\n #end\\r\\n \\r\\n
\\r\\n \\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Developer quota limit approaching notification\",\r\n \"description\": \"Developers receive this email to alert them when they are approaching a quota limit.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubPrimaryKey\",\r\n \"title\": \"Primary Subscription key\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"QuotaResetDate\",\r\n \"title\": \"Quota reset date\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Welcome to the $OrganizationName API!\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n Welcome to $OrganizationName API! \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n Your $OrganizationName API program registration is completed and we are thrilled to have you as a customer. Here are a few important bits of information for your reference:
\\r\\n \\r\\n \\r\\n #if ($IdentityProvider == \\\"Basic\\\")\\r\\n \\r\\n Please use the following username when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername \\r\\n #else\\r\\n \\r\\n Please use the following $IdentityProvider account when signing into any of the ${OrganizationName}-hosted developer portals:\\r\\n $DevUsername \\r\\n #end\\r\\n \\r\\n \\r\\n \\r\\n We will direct all communications to the following email address :\\r\\n \\r\\n \\r\\n \\r\\n $DevEmail \\r\\n \\r\\n \\r\\n \\r\\n
\\r\\n Best of luck in your API pursuits!
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Developer welcome letter\",\r\n \"description\": \"Developers receive this “welcome” email after they confirm their new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevUsername\",\r\n \"title\": \"Developer user name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IdentityProvider\",\r\n \"title\": \"Identity Provider selected by Organization\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/EmailChangeIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"EmailChangeIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm the new email associated with your $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n You are receiving this email because you made a change to the email address on your $OrganizationName API account.
\\r\\n Please click on the following link to confirm the change:
\\r\\n \\r\\n \\r\\n $ConfirmUrl \\r\\n \\r\\n
\\r\\n If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Email change confirmation\",\r\n \"description\": \"Developers receive this email to confirm a new e-mail address after they change their existing one associated with their account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer confirmation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/InviteUserNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"InviteUserNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"You are invited to join the $OrganizationName developer network\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n Your account has been created. Please follow the link below to visit the $OrganizationName developer portal and claim it:\\r\\n
\\r\\n \\r\\n $ConfirmUrl \\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Invite user\",\r\n \"description\": \"An e-mail invitation to create an account, sent on request by API publishers.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Confirmation link\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewCommentNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewCommentNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"$IssueName issue has a new comment\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n This is a brief note to let you know that $CommenterFirstName $CommenterLastName made the following comment on the issue $IssueName you created:
\\r\\n $CommentText
\\r\\n \\r\\n To view the issue on the developer portal click here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"New comment added to an issue\",\r\n \"description\": \"Developers receive this email when someone comments on the issue they created on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterFirstName\",\r\n \"title\": \"Commenter first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommenterLastName\",\r\n \"title\": \"Commenter last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"CommentText\",\r\n \"title\": \"Comment text\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ConfirmSignUpIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ConfirmSignUpIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Please confirm your new $OrganizationName API account\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n Thank you for joining the $OrganizationName API program! We host a growing number of cool APIs and strive to provide an awesome experience for API developers.
\\r\\n First order of business is to activate your account and get you going. To that end, please click on the following link:
\\r\\n \\r\\n \\r\\n $ConfirmUrl \\r\\n \\r\\n
\\r\\n If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"New developer account confirmation\",\r\n \"description\": \"Developers receive this email to confirm their e-mail address after they sign up for a new account.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer activation URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/NewIssueNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"NewIssueNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your request $IssueName was received\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n Thank you for contacting us. Our API team will review your issue and get back to you soon.
\\r\\n \\r\\n Click this link to view or edit your request.\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"New issue received\",\r\n \"description\": \"This email is sent to developers after they create a new topic on the Issues page of the developer portal.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueId\",\r\n \"title\": \"Issue id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"IssueName\",\r\n \"title\": \"Issue name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PurchaseDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PurchaseDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription to the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Greetings $DevFirstName $DevLastName!
\\r\\n \\r\\n Thank you for subscribing to the $ProdName and welcome to the $OrganizationName developer community. We are delighted to have you as part of the team and are looking forward to the amazing applications you will build using our API!\\r\\n
\\r\\n Below are a few subscription details for your reference:
\\r\\n \\r\\n
\\r\\n #if ($SubStartDate != \\\"\\\")\\r\\n Start date: $SubStartDate \\r\\n #end\\r\\n \\r\\n #if ($SubTerm != \\\"\\\")\\r\\n Subscription term: $SubTerm \\r\\n #end\\r\\n \\r\\n \\r\\n \\r\\n Visit the developer profile area to manage your subscription and subscription keys\\r\\n
\\r\\n A couple of pointers to help get you started:
\\r\\n \\r\\n \\r\\n Learn about the API \\r\\n \\r\\n
\\r\\n The API documentation provides all information necessary to make a request and to process a response. Code samples are provided per API operation in a variety of languages. Moreover, an interactive console allows making API calls directly from the developer portal without writing any code.
\\r\\n \\r\\n \\r\\n Feature your app in the app gallery \\r\\n \\r\\n
\\r\\n You can publish your application on our gallery for increased visibility to potential new users.
\\r\\n \\r\\n \\r\\n Stay in touch \\r\\n \\r\\n
\\r\\n \\r\\n If you have an issue, a question, a suggestion, a request, or if you just want to tell us something, go to the Issues page on the developer portal and create a new topic.\\r\\n
\\r\\n Happy hacking,
\\r\\n The $OrganizationName API Team
\\r\\n $DevPortalUrl \\r\\n \\r\\n\",\r\n \"title\": \"New subscription activated\",\r\n \"description\": \"Developers receive this acknowledgement email after subscribing to a product.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubStartDate\",\r\n \"title\": \"Subscription start date\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubTerm\",\r\n \"title\": \"Subscription term\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PasswordResetIdentityDefault\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetIdentityDefault\",\r\n \"properties\": {\r\n \"subject\": \"Your password change request\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n Letter \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n You are receiving this email because you requested to change the password on your $OrganizationName API account.
\\r\\n Please click on the link below and follow instructions to create your new password:
\\r\\n \\r\\n \\r\\n $ConfirmUrl \\r\\n \\r\\n
\\r\\n If clicking the link does not work, please copy-and-paste or re-type it into your browser's address bar and hit \\\"Enter\\\".
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password change confirmation\",\r\n \"description\": \"Developers receive this email when they request a password change of their account. The purpose of the email is to verify that the account owner made the request and to provide a one-time perishable URL for changing the password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ConfirmUrl\",\r\n \"title\": \"Developer new password instruction URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/PasswordResetByAdminNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"PasswordResetByAdminNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your password was reset\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n
\\r\\n The password of your $OrganizationName API account has been reset, per your request.
\\r\\n \\r\\n Your new password is: $DevPassword
\\r\\n Please make sure to change it next time you sign in.
\\r\\n Thank you,
\\r\\n $OrganizationName API Team
\\r\\n \\r\\n $DevPortalUrl \\r\\n
\\r\\n \\r\\n \\r\\n
\\r\\n \\r\\n\",\r\n \"title\": \"Password reset by publisher notification (Password reset by admin)\",\r\n \"description\": \"Developers receive this email when the publisher resets their password.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPassword\",\r\n \"title\": \"New Developer password\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/RejectDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RejectDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We would like to inform you that we reviewed your subscription request for the $ProdName .\\r\\n
\\r\\n #if ($SubDeclineReason == \\\"\\\")\\r\\n Regretfully, we were unable to approve it, as subscriptions are temporarily suspended at this time.
\\r\\n #else\\r\\n \\r\\n Regretfully, we were unable to approve it at this time for the following reason:\\r\\n
$SubDeclineReason
\\r\\n #end\\r\\n We truly appreciate your interest.
All the best,
The $OrganizationName API Team
$DevPortalUrl \\r\\n\",\r\n \"title\": \"Subscription request declined\",\r\n \"description\": \"This email is sent to developers when their subscription requests for products requiring publisher approval is declined.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"SubDeclineReason\",\r\n \"title\": \"Reason for declining subscription\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/RequestDeveloperNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"RequestDeveloperNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your subscription request for the $ProdName\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n Thank you for your interest in our $ProdName API product!\\r\\n
\\r\\n \\r\\n We were delighted to receive your subscription request. We will promptly review it and get back to you at $DevEmail .\\r\\n
\\r\\n Thank you,
\\r\\n The $OrganizationName API Team
\\r\\n $DevPortalUrl \\r\\n \\r\\n\",\r\n \"title\": \"Subscription request received\",\r\n \"description\": \"This email is sent to developers to acknowledge receipt of their subscription requests for products requiring publisher approval.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevEmail\",\r\n \"title\": \"Developer email\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"ProdName\",\r\n \"title\": \"Product name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:14 GMT"
+ "Fri, 09 Mar 2018 19:55:51 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ac6ea91d-c241-46ca-af6b-4e7e37cbe0e3"
+ "2c1c1942-9310-4275-9fc4-36c81d6224e1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14989"
],
"x-ms-correlation-request-id": [
- "f0d60929-64d5-4dce-a50c-da6514b7246a"
+ "9c128965-aea0-46e4-b7a6-182b0aa992eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235914Z:f0d60929-64d5-4dce-a50c-da6514b7246a"
+ "WESTUS2:20180309T195552Z:9c128965-aea0-46e4-b7a6-182b0aa992eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -209,14 +218,14 @@
"58"
],
"x-ms-client-request-id": [
- "74ec826a-fe79-4841-b60a-52b1d14484fd"
+ "f6e33f32-6c8c-40d2-af4d-d66d20e8d477"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"New Subject\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": false,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}",
@@ -234,13 +243,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:14 GMT"
+ "Fri, 09 Mar 2018 19:55:52 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANBc=\""
+ "\"AAAAAAAAOQI=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,16 +258,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "556b977b-9216-4042-a9cf-a5a1d7b423b3"
+ "e715c17d-7dcf-4271-ae5f-7d4cb2124852"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1193"
],
"x-ms-correlation-request-id": [
- "a687cc80-6dab-4d8b-aa32-e7ce49ce44bd"
+ "77de09ba-6a81-4380-b280-cce076838171"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235915Z:a687cc80-6dab-4d8b-aa32-e7ce49ce44bd"
+ "WESTUS2:20180309T195552Z:77de09ba-6a81-4380-b280-cce076838171"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -270,14 +282,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "85f4ffc4-1ea3-4611-b7e5-2616f878f203"
+ "62bd9090-ae19-47f2-9d0d-348c742377cc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"New Subject\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": false,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}",
@@ -292,7 +304,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:15 GMT"
+ "Fri, 09 Mar 2018 19:55:52 GMT"
],
"Pragma": [
"no-cache"
@@ -301,7 +313,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANBc=\""
+ "\"AAAAAAAAOQI=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,16 +325,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5987d06c-54d9-466d-a99b-49693f501a5a"
+ "be225913-f013-4ce7-8c83-5d36e399c050"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14988"
],
"x-ms-correlation-request-id": [
- "8a7792e1-5c82-4596-a6d6-0b7367ef8f51"
+ "b0f85aca-61f0-4c5b-8fa7-d8eab1ff7089"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235915Z:8a7792e1-5c82-4596-a6d6-0b7367ef8f51"
+ "WESTUS2:20180309T195553Z:b0f85aca-61f0-4c5b-8fa7-d8eab1ff7089"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -334,14 +349,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9a49687-c190-49cc-987b-32ade18d25ac"
+ "b0167f06-809c-4839-8099-6e8150a1fdad"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/templates/ApplicationApprovedNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/templates\",\r\n \"name\": \"ApplicationApprovedNotificationMessage\",\r\n \"properties\": {\r\n \"subject\": \"Your application $AppName is published in the application gallery\",\r\n \"body\": \"\\r\\n\\r\\n \\r\\n Dear $DevFirstName $DevLastName,
\\r\\n \\r\\n We are happy to let you know that your request to publish the $AppName application in the application gallery has been approved. Your application has been published and can be viewed here .\\r\\n
\\r\\n Best,
\\r\\n The $OrganizationName API Team
\\r\\n \\r\\n\",\r\n \"title\": \"Application gallery submission approved\",\r\n \"description\": \"Developers who submitted their application for publication in the application gallery on the developer portal receive this email after their submission is approved.\",\r\n \"isDefault\": true,\r\n \"parameters\": [\r\n {\r\n \"name\": \"AppId\",\r\n \"title\": \"Application id\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"title\": \"Application name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevFirstName\",\r\n \"title\": \"Developer first name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevLastName\",\r\n \"title\": \"Developer last name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"OrganizationName\",\r\n \"title\": \"Organization name\",\r\n \"description\": null\r\n },\r\n {\r\n \"name\": \"DevPortalUrl\",\r\n \"title\": \"Developer portal URL\",\r\n \"description\": null\r\n }\r\n ]\r\n }\r\n}",
@@ -356,7 +371,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:15 GMT"
+ "Fri, 09 Mar 2018 19:55:53 GMT"
],
"Pragma": [
"no-cache"
@@ -377,16 +392,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5f549d5a-42c8-4a87-9900-a41248272022"
+ "24957b02-e7c3-488d-88e7-d5b82fee43ba"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14987"
],
"x-ms-correlation-request-id": [
- "e8b060f9-b1a9-4b2b-90a4-bd90168fabf6"
+ "8b62f82d-4dc0-40a4-a90a-a22c5e1c9ad3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235916Z:e8b060f9-b1a9-4b2b-90a4-bd90168fabf6"
+ "WESTUS2:20180309T195553Z:8b62f82d-4dc0-40a4-a90a-a22c5e1c9ad3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -398,17 +416,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22f57d10-891e-450d-b513-af9f04febdc7"
+ "f284a3c2-5db6-46b6-b8cc-71744416d6d7"
],
"If-Match": [
- "\"AAAAAAAANBc=\""
+ "\"AAAAAAAAOQI=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -423,7 +441,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:15 GMT"
+ "Fri, 09 Mar 2018 19:55:52 GMT"
],
"Pragma": [
"no-cache"
@@ -435,16 +453,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94859595-234b-4656-90a0-3cce702a1515"
+ "85967881-c3d0-4da2-91bf-60af5bb0e32b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1192"
],
"x-ms-correlation-request-id": [
- "16ea4942-9764-44dd-8fa3-229a6b4ee608"
+ "5c1ad501-95f4-48eb-a05c-6bfcd059cdba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235916Z:16ea4942-9764-44dd-8fa3-229a6b4ee608"
+ "WESTUS2:20180309T195553Z:5c1ad501-95f4-48eb-a05c-6bfcd059cdba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -456,7 +477,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6268b2ae-626d-41d6-b78e-e39f82852ed9"
+ "d515f5a1-a768-4b8e-8691-32820db3a0fb"
],
"If-Match": [
"*"
@@ -466,7 +487,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -478,7 +499,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:15 GMT"
+ "Fri, 09 Mar 2018 19:55:53 GMT"
],
"Pragma": [
"no-cache"
@@ -490,16 +511,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9510e910-a5aa-4838-905b-9093edc2643b"
+ "40ca4aec-b262-457c-a590-a29b54736511"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1191"
],
"x-ms-correlation-request-id": [
- "4530bd14-781a-462b-a502-f198e418c379"
+ "4216e236-2705-4728-ad94-f5b057c1fc74"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235916Z:4530bd14-781a-462b-a502-f198e418c379"
+ "WESTUS2:20180309T195553Z:4216e236-2705-4728-ad94-f5b057c1fc74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupTests/CreateListUpdateDelete.json
index 8ff6085ef5a6a..e4efe5fa93a57 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "5cce902e-07ff-4052-8b32-b658b0e70adf"
+ "ab0209eb-1aad-4d74-a305-d954a9f9c7ef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:03 GMT"
+ "Fri, 09 Mar 2018 19:36:45 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52574d06-b3b6-4631-979d-0c8e0b4b3e0f",
- "13953116-1d29-4891-b8ce-fb746e8055a9"
+ "db459d42-b041-43b9-b55a-11c6810a7981",
+ "06cebcb1-cdd3-47d3-923f-f79e5d727ac2"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "3eada5b9-c308-4743-b85a-7a660c8e6c24"
+ "aa63c56d-a477-4395-90c1-f6482b2941f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055503Z:3eada5b9-c308-4743-b85a-7a660c8e6c24"
+ "WESTUS2:20180309T193646Z:aa63c56d-a477-4395-90c1-f6482b2941f7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7383d76a-0ca0-43ab-8ba1-f52d5ea46fda"
+ "fafbd7ef-f011-4e71-a3e2-18192e3a07c9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:03 GMT"
+ "Fri, 09 Mar 2018 19:36:45 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aed60786-fe29-4bd3-a323-c2a28893bf83"
+ "86411992-6a8e-42ec-b5eb-d116db4c3d81"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "8365fb56-6ed9-4b9a-a55f-69db27c2ae40"
+ "ef9aa1c4-f7ec-47aa-92f8-922c398ae6ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055503Z:8365fb56-6ed9-4b9a-a55f-69db27c2ae40"
+ "WESTUS2:20180309T193646Z:ef9aa1c4-f7ec-47aa-92f8-922c398ae6ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4bcb7226-ad72-4c70-b831-63e7c3ad3a6d"
+ "bdffb571-74a9-4575-9c10-9756723b1ee6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/developers\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"developers\",\r\n \"properties\": {\r\n \"displayName\": \"Developers\",\r\n \"description\": \"Developers is a built-in group. Its membership is managed by the system. Signed-in users fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:03 GMT"
+ "Fri, 09 Mar 2018 19:36:45 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98a6d878-1e0b-4728-91a4-efdb52b26840"
+ "9de71e07-5749-4c8c-838d-374ba96845ed"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "12b5d46d-46d6-4936-9705-22116f5209b8"
+ "207a92a8-28eb-4401-aa91-d123721bb7b6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055503Z:12b5d46d-46d6-4936-9705-22116f5209b8"
+ "WESTUS2:20180309T193646Z:207a92a8-28eb-4401-aa91-d123721bb7b6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4107ca7-1966-47c7-9437-14822eb3a069"
+ "2bc68b97-ced4-4ee2-b2a8-c243c19a05ec"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/administrators\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"administrators\",\r\n \"properties\": {\r\n \"displayName\": \"Administrators\",\r\n \"description\": \"Administrators is a built-in group. Its membership is managed by the system. Microsoft Azure subscription administrators fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:04 GMT"
+ "Fri, 09 Mar 2018 19:36:45 GMT"
],
"Pragma": [
"no-cache"
@@ -243,25 +252,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "397a62df-54dc-4b38-beab-0d31b80cacef"
+ "a8d12d78-84a4-44a1-b63e-5b5742103ffa"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "80d1901f-13b6-4703-b760-432136bb6f28"
+ "18d7929b-e843-46e7-8237-31b5ae4e67d6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055504Z:80d1901f-13b6-4703-b760-432136bb6f28"
+ "WESTUS2:20180309T193646Z:18d7929b-e843-46e7-8237-31b5ae4e67d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup6944\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup1429\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -270,17 +282,17 @@
"116"
],
"x-ms-client-request-id": [
- "26558374-c809-4243-b088-8f2c3c6c4b9f"
+ "62c81451-2e78-4642-9f8c-d137b5d205c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId5450\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup6944\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId4808\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup1429\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"449"
@@ -295,13 +307,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:04 GMT"
+ "Fri, 09 Mar 2018 19:36:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANSM=\""
+ "\"AAAAAAAAODU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -310,35 +322,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "49260802-acb8-4be0-b036-09f269a1ee85"
+ "c2808ea6-1b27-4ec3-a91e-15c7e9570d27"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "bf811247-4fbe-4d79-9a34-7aedef4620d3"
+ "9b1d0bbc-9897-4586-bba8-0c3e79a94afe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055504Z:bf811247-4fbe-4d79-9a34-7aedef4620d3"
+ "WESTUS2:20180309T193647Z:9b1d0bbc-9897-4586-bba8-0c3e79a94afe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3b25a1a-b9be-4aef-bff7-d6642c47e6bc"
+ "0106a1e6-fa08-44ed-ae1e-8b5c60158c04"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -353,13 +368,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:04 GMT"
+ "Fri, 09 Mar 2018 19:36:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANSM=\""
+ "\"AAAAAAAAODU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -368,35 +383,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "718d9cee-afad-4f5a-a179-4c208a931dee"
+ "bca46a1d-2716-4862-af4d-21c730aee2b1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "ba4cf660-3b92-4c82-a12e-81979f9218f1"
+ "5428aa99-12e1-4ee6-b219-9e3ebc19961b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055504Z:ba4cf660-3b92-4c82-a12e-81979f9218f1"
+ "WESTUS2:20180309T193647Z:5428aa99-12e1-4ee6-b219-9e3ebc19961b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2add329-a2e7-4c41-aa3c-84e3eadb0f16"
+ "ac0d540c-1ba6-4736-96cd-a82159d127a3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -411,13 +429,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:05 GMT"
+ "Fri, 09 Mar 2018 19:36:47 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANSY=\""
+ "\"AAAAAAAAODg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -426,23 +444,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c77feed3-ef09-49c2-be7b-0af1c37ab4b8"
+ "02dd64df-98d7-4414-9f6b-fa421603f4d0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "9c97a6b6-ec0a-4e63-83f0-eae7f2698d1f"
+ "933a84a0-20e1-4748-b5b7-b01e1acca91c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055505Z:9c97a6b6-ec0a-4e63-83f0-eae7f2698d1f"
+ "WESTUS2:20180309T193648Z:933a84a0-20e1-4748-b5b7-b01e1acca91c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updating the description of the Sdk\"\r\n }\r\n}",
"RequestHeaders": {
@@ -453,17 +474,17 @@
"86"
],
"x-ms-client-request-id": [
- "48284bed-6cba-4088-ad7e-58f8c3395e23"
+ "bcef8b19-da5a-438d-a70d-eb0d88f309a6"
],
"If-Match": [
- "\"AAAAAAAANSM=\""
+ "\"AAAAAAAAODU=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -475,7 +496,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:05 GMT"
+ "Fri, 09 Mar 2018 19:36:47 GMT"
],
"Pragma": [
"no-cache"
@@ -487,38 +508,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c8f847e-eb25-41c4-8665-73bb540afff0"
+ "976c3d3b-34bc-4538-a1a8-994bf460b6fc"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "4f2286e5-cca6-4f51-aac1-0474b5c6385b"
+ "8ebca21d-c7e7-409a-8b61-7964cdde3780"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055505Z:4f2286e5-cca6-4f51-aac1-0474b5c6385b"
+ "WESTUS2:20180309T193648Z:8ebca21d-c7e7-409a-8b61-7964cdde3780"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "329c6264-e558-4280-a254-5c0947f3fdad"
+ "16a8386d-51c4-43f9-984a-64fed7daf654"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId5450\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup6944\",\r\n \"description\": \"Updating the description of the Sdk\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId4808\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup1429\",\r\n \"description\": \"Updating the description of the Sdk\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -530,7 +554,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:05 GMT"
+ "Fri, 09 Mar 2018 19:36:47 GMT"
],
"Pragma": [
"no-cache"
@@ -539,7 +563,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANSY=\""
+ "\"AAAAAAAAODg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -551,35 +575,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fc020077-adaa-477b-8e95-fd418274b73f"
+ "534aca44-b181-418b-ad82-449848a2f442"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "bc816742-613f-4e95-b8fb-6772cf7e4a5e"
+ "f5cc8cb5-cad2-46f0-842b-33e9d925c133"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055505Z:bc816742-613f-4e95-b8fb-6772cf7e4a5e"
+ "WESTUS2:20180309T193648Z:f5cc8cb5-cad2-46f0-842b-33e9d925c133"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "258fc1c2-7bc2-4d2b-ba32-688c688b84dc"
+ "e3eb0e00-091f-4c7a-80c2-69a5b213b949"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Group not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -597,7 +624,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:05 GMT"
+ "Fri, 09 Mar 2018 19:36:48 GMT"
],
"Pragma": [
"no-cache"
@@ -609,38 +636,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "945c4640-e18b-44b6-a6ee-9a08e1e7ea95"
+ "48728b2c-3a10-4519-9d60-c176b526ba67"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14993"
],
"x-ms-correlation-request-id": [
- "efd1b552-7292-4c51-ab84-782884f90893"
+ "52194e15-95ce-4250-a813-51a686f6ac59"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055505Z:efd1b552-7292-4c51-ab84-782884f90893"
+ "WESTUS2:20180309T193649Z:52194e15-95ce-4250-a813-51a686f6ac59"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6aec451b-c7b9-4163-be98-df4b19b0806d"
+ "e7578347-d02c-4cbb-b1fd-1e1a15ddd3e3"
],
"If-Match": [
- "\"AAAAAAAANSY=\""
+ "\"AAAAAAAAODg=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -655,7 +685,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:05 GMT"
+ "Fri, 09 Mar 2018 19:36:48 GMT"
],
"Pragma": [
"no-cache"
@@ -667,28 +697,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "946f316b-cb74-4ced-9ec9-463394c79f30"
+ "0fcf07f0-3634-4eee-ad71-74be26a94114"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "ad1140d8-6c59-4660-8f09-d4cdda42dbe8"
+ "54dafbc3-d42f-4ecd-8dfb-05894ad8924d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055505Z:ad1140d8-6c59-4660-8f09-d4cdda42dbe8"
+ "WESTUS2:20180309T193649Z:54dafbc3-d42f-4ecd-8dfb-05894ad8924d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId5450?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDU0NTA/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4808?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQ4MDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7884cc52-d336-4b54-809f-ffb115711093"
+ "1dcfb80c-50ef-4664-b62b-dc4a89f99275"
],
"If-Match": [
"*"
@@ -698,7 +731,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -710,7 +743,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 05:55:06 GMT"
+ "Fri, 09 Mar 2018 19:36:48 GMT"
],
"Pragma": [
"no-cache"
@@ -722,16 +755,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "58f3abbb-5873-42c7-b3d6-0e8356dcba1e"
+ "00e9b167-d798-43eb-9e2f-1fdfd780b2b5"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "6e107312-7770-4e8c-bd1d-f0a324237fab"
+ "c5656668-5cba-48b6-99cb-7b30270a04b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T055506Z:6e107312-7770-4e8c-bd1d-f0a324237fab"
+ "WESTUS2:20180309T193649Z:c5656668-5cba-48b6-99cb-7b30270a04b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -739,8 +775,8 @@
],
"Names": {
"CreateListUpdateDelete": [
- "sdkGroupId5450",
- "sdkGroup6944"
+ "sdkGroupId4808",
+ "sdkGroup1429"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupUserTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupUserTests/CreateListUpdateDelete.json
index e727f9f470ed6..6cf6364e571f6 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupUserTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.GroupUserTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "48ab927c-8195-4c80-a9bd-f18ce0b0c336"
+ "4a6b0b58-e2b0-43b9-9058-671504f43f19"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:34 GMT"
+ "Fri, 09 Mar 2018 19:39:12 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4b9c4269-48b3-4c5d-a737-0d634da0d78e",
- "a7e19a7e-8871-470b-bf92-0cb6c5b6634e"
+ "92d65920-9bdd-4dc6-8f2c-64a78fb5142c",
+ "224c60cc-91e6-4b94-a7c4-f3a03ba7a5e6"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "a35e3b4d-cfe5-4307-b75c-0b291a208aec"
+ "e5c5d677-6821-4b31-b7d6-828eeaa32fa7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062635Z:a35e3b4d-cfe5-4307-b75c-0b291a208aec"
+ "WESTUS2:20180309T193912Z:e5c5d677-6821-4b31-b7d6-828eeaa32fa7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d11510b-f4f2-49c4-bff6-4d642570c893"
+ "9b794b9a-2df2-4867-a9b7-5b961cec2b95"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:34 GMT"
+ "Fri, 09 Mar 2018 19:39:12 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,25 +124,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f013807a-cb09-49f4-b490-c149159dc252"
+ "8741220e-38ae-4f26-9082-50c4794cb34e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "94bd3c7d-f1c1-4473-b8bd-48e471ce7289"
+ "ad5287f6-49ef-4905-b551-ee3d21c9ab9c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062635Z:94bd3c7d-f1c1-4473-b8bd-48e471ce7289"
+ "WESTUS2:20180309T193913Z:ad5287f6-49ef-4905-b551-ee3d21c9ab9c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup5723\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup2713\",\r\n \"description\": \"Group created from Sdk client\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -148,17 +154,17 @@
"116"
],
"x-ms-client-request-id": [
- "313e0dcb-fc62-40b1-82a9-16f92567da71"
+ "cb4e0ca8-c782-4b72-9c54-7ffb68895d20"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId2218\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup5723\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"sdkGroupId4394\",\r\n \"properties\": {\r\n \"displayName\": \"sdkGroup2713\",\r\n \"description\": \"Group created from Sdk client\",\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"449"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:35 GMT"
+ "Fri, 09 Mar 2018 19:39:13 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANVs=\""
+ "\"AAAAAAAAOFQ=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,35 +194,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6ee5e6e6-07ae-4bd9-902e-2eb710dc0eb3"
+ "8a5c5463-6ef9-4be0-b0db-5a256219522a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "4bf91cad-ba68-484f-b7cc-7a4b8f5a6f3c"
+ "e7f00cb0-7128-4622-8c55-0b4a6d9a779b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062636Z:4bf91cad-ba68-484f-b7cc-7a4b8f5a6f3c"
+ "WESTUS2:20180309T193913Z:e7f00cb0-7128-4622-8c55-0b4a6d9a779b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTgvdXNlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQvdXNlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b813f788-7b0a-411b-8bb7-8a7aea722cf7"
+ "94a4a4d7-067f-4f99-97dd-f03aa0060bef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:35 GMT"
+ "Fri, 09 Mar 2018 19:39:14 GMT"
],
"Pragma": [
"no-cache"
@@ -249,38 +258,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6943180e-40c7-4524-b58a-937812574e40"
+ "29c9c6f3-c055-474c-9f57-ffddf3394a2b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "23a0d917-0135-4e61-bf85-fc3657351f13"
+ "63630a6e-bb98-41c1-9da4-8cfcfd79ffcb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062636Z:23a0d917-0135-4e61-bf85-fc3657351f13"
+ "WESTUS2:20180309T193914Z:63630a6e-bb98-41c1-9da4-8cfcfd79ffcb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTgvdXNlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQvdXNlcnM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfd095e0-e10f-4494-9d67-7f9c7c956b2f"
+ "38330493-5adc-4a9c-b811-b90962b6d81f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users/sdkUserId5415\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId5415\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst5099\",\r\n \"lastName\": \"sdkLast2843\",\r\n \"email\": \"sdkFirst.Last7055@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-20T06:26:37.533Z\",\r\n \"note\": \"dummy note\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last7055@contoso.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users/sdkUserId2488\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId2488\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst3504\",\r\n \"lastName\": \"sdkLast5759\",\r\n \"email\": \"sdkFirst.Last4710@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T19:39:16.887Z\",\r\n \"note\": \"dummy note\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"sdkFirst.Last4710@contoso.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -292,7 +304,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:36 GMT"
+ "Fri, 09 Mar 2018 19:39:16 GMT"
],
"Pragma": [
"no-cache"
@@ -310,25 +322,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "897caaa4-d090-4db2-911d-e1eb690b2526"
+ "fda459ae-1fdf-4c3c-928c-035994c35c5a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "0db96491-f392-4472-be6e-c3bf07df7ce0"
+ "ac08baa0-097c-43a9-afbc-f750d34f5a08"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062637Z:0db96491-f392-4472-be6e-c3bf07df7ce0"
+ "WESTUS2:20180309T193916Z:ac08baa0-097c-43a9-afbc-f750d34f5a08"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId5415?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQ1NDE1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId2488?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQyNDg4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"dummy note\",\r\n \"email\": \"sdkFirst.Last7055@contoso.com\",\r\n \"firstName\": \"sdkFirst5099\",\r\n \"lastName\": \"sdkLast2843\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"dummy note\",\r\n \"email\": \"sdkFirst.Last4710@contoso.com\",\r\n \"firstName\": \"sdkFirst3504\",\r\n \"lastName\": \"sdkLast5759\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -337,17 +352,17 @@
"191"
],
"x-ms-client-request-id": [
- "2a02b53d-15d0-4fb4-b61f-6c1d55e5728a"
+ "b5b946d9-5b7d-429d-be25-46dd4db07e52"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId5415\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"sdkUserId5415\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst5099\",\r\n \"lastName\": \"sdkLast2843\",\r\n \"email\": \"sdkFirst.Last7055@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-20T06:26:37.533Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": \"sdkFirst.Last7055@contoso.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId2488\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"sdkUserId2488\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst3504\",\r\n \"lastName\": \"sdkLast5759\",\r\n \"email\": \"sdkFirst.Last4710@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T19:39:16.887Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": \"sdkFirst.Last4710@contoso.com\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1101"
@@ -362,13 +377,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:36 GMT"
+ "Fri, 09 Mar 2018 19:39:15 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANV4AAAAAAAA1YA==\""
+ "\"AAAAAAAAOFcAAAAAAAA4WQ==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -377,38 +392,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "97fdbebc-674d-4fc0-841d-9d0cf977b971"
+ "e0c46364-efb6-48bf-af8a-593df564711c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "3aaec78b-fafa-45e0-93c1-f93f446e245e"
+ "bd05c398-4c45-4cb7-8fda-051651fb9536"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062636Z:3aaec78b-fafa-45e0-93c1-f93f446e245e"
+ "WESTUS2:20180309T193915Z:bd05c398-4c45-4cb7-8fda-051651fb9536"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users/sdkUserId5415?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTgvdXNlcnMvc2RrVXNlcklkNTQxNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users/sdkUserId2488?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQvdXNlcnMvc2RrVXNlcklkMjQ4OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac8a081c-490b-47fd-b878-8e032542d1a3"
+ "95f64036-341a-498b-8a23-a29422cfb633"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users/sdkUserId5415\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId5415\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst5099\",\r\n \"lastName\": \"sdkLast2843\",\r\n \"email\": \"sdkFirst.Last7055@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-20T06:26:37.533Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users/sdkUserId2488\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"sdkUserId2488\",\r\n \"properties\": {\r\n \"firstName\": \"sdkFirst3504\",\r\n \"lastName\": \"sdkLast5759\",\r\n \"email\": \"sdkFirst.Last4710@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T19:39:16.887Z\",\r\n \"note\": \"dummy note\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"573"
@@ -423,13 +441,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:36 GMT"
+ "Fri, 09 Mar 2018 19:39:16 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANWc=\""
+ "\"AAAAAAAAOGA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,35 +456,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6af9fa40-9701-42df-9ae8-4171c8dc76c4"
+ "e1109ff4-2c9d-4360-b7b9-9b2e400d4dcb"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "13c16564-3794-4a24-8f3f-cab25474a446"
+ "a8949bde-e7f6-40b6-917b-6f23f708acd1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062637Z:13c16564-3794-4a24-8f3f-cab25474a446"
+ "WESTUS2:20180309T193916Z:a8949bde-e7f6-40b6-917b-6f23f708acd1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users/sdkUserId5415?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTgvdXNlcnMvc2RrVXNlcklkNTQxNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users/sdkUserId2488?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQvdXNlcnMvc2RrVXNlcklkMjQ4OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "597d607a-f920-4292-ab27-d9c01b4ec5c6"
+ "621bfc89-eeed-4f7a-911a-e2ff47a63683"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -481,7 +502,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:36 GMT"
+ "Fri, 09 Mar 2018 19:39:16 GMT"
],
"Pragma": [
"no-cache"
@@ -493,35 +514,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "677363c5-57c3-4abd-a615-0b8fd2efbc9a"
+ "9fcc3807-e510-4477-ab5d-35cdf946b91e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "51e9b704-d62c-45d2-bb37-152c71556ccd"
+ "80c0c43d-f087-4975-9517-d1eb35fe216f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062637Z:51e9b704-d62c-45d2-bb37-152c71556ccd"
+ "WESTUS2:20180309T193916Z:80c0c43d-f087-4975-9517-d1eb35fe216f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users/sdkUserId5415?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTgvdXNlcnMvc2RrVXNlcklkNTQxNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users/sdkUserId2488?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQvdXNlcnMvc2RrVXNlcklkMjQ4OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5df8cfcf-f615-417d-96e2-e9968c12f153"
+ "f8571c36-964a-44c6-9881-efa882b12cdd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -536,7 +560,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:37 GMT"
+ "Fri, 09 Mar 2018 19:39:18 GMT"
],
"Pragma": [
"no-cache"
@@ -548,35 +572,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "88a399b8-1204-49d8-ac58-34cdf4049514"
+ "5a00c994-a758-4843-b2e1-140b78d15e12"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "def102f6-8e97-4c15-9674-764417f63785"
+ "dbd2f43f-da7b-41a0-95af-cbcdbef471c2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062638Z:def102f6-8e97-4c15-9674-764417f63785"
+ "WESTUS2:20180309T193918Z:dbd2f43f-da7b-41a0-95af-cbcdbef471c2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218/users/sdkUserId5415?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTgvdXNlcnMvc2RrVXNlcklkNTQxNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394/users/sdkUserId2488?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQvdXNlcnMvc2RrVXNlcklkMjQ4OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eac314d2-5840-4b6b-9850-18660cf1ac92"
+ "66f65226-0e17-4ff0-9466-10ecc0662b73"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -591,7 +618,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:37 GMT"
+ "Fri, 09 Mar 2018 19:39:17 GMT"
],
"Pragma": [
"no-cache"
@@ -603,28 +630,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bcb9583c-c099-4a31-8778-45f112e54101"
+ "0b01b715-0642-40ce-8d8a-93e5997b1df4"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "516b09a9-7f91-42fe-b2d5-e61634601e86"
+ "9df39086-5ae3-47f9-b66b-f9d80b70648b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062638Z:516b09a9-7f91-42fe-b2d5-e61634601e86"
+ "WESTUS2:20180309T193917Z:9df39086-5ae3-47f9-b66b-f9d80b70648b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId5415?deleteSubscriptions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQ1NDE1P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/sdkUserId2488?deleteSubscriptions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy9zZGtVc2VySWQyNDg4P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0068171-01a0-43ff-b0d2-2e46fd9373de"
+ "8c5a77f3-cbcb-4b2b-ae89-869069227868"
],
"If-Match": [
"*"
@@ -634,7 +664,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -649,7 +679,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:37 GMT"
+ "Fri, 09 Mar 2018 19:39:19 GMT"
],
"Pragma": [
"no-cache"
@@ -661,28 +691,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "23120aeb-9003-4b5f-b37b-01c3d13fad32"
+ "68c1f9c9-f43b-4ba8-bc47-dbb1d0e4ddc8"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "d69a6cdd-8a8e-4a98-8062-8b3974415d12"
+ "ad80fa1c-430c-417c-b6cd-1b9de426eb3d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062638Z:d69a6cdd-8a8e-4a98-8062-8b3974415d12"
+ "WESTUS2:20180309T193919Z:ad80fa1c-430c-417c-b6cd-1b9de426eb3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId2218?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDIyMTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/sdkGroupId4394?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvc2RrR3JvdXBJZDQzOTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec784ef0-4692-4792-b028-78d1117994b2"
+ "513a8e8a-9cde-44d9-bfde-7f36b353a735"
],
"If-Match": [
"*"
@@ -692,7 +725,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -707,7 +740,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:26:38 GMT"
+ "Fri, 09 Mar 2018 19:39:19 GMT"
],
"Pragma": [
"no-cache"
@@ -719,16 +752,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ee55fd5d-4af6-47ed-b99a-8f884be053b9"
+ "dbd64b64-3166-43e6-ae38-4086e021d9b9"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "d5714782-613b-4164-a493-577c9356816a"
+ "623e04a9-22fa-469f-88c9-ef51c503e88c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T062638Z:d5714782-613b-4164-a493-577c9356816a"
+ "WESTUS2:20180309T193919Z:623e04a9-22fa-469f-88c9-ef51c503e88c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -736,12 +772,12 @@
],
"Names": {
"CreateListUpdateDelete": [
- "sdkUserId5415",
- "sdkGroupId2218",
- "sdkGroup5723",
- "sdkFirst5099",
- "sdkLast2843",
- "sdkFirst.Last7055"
+ "sdkUserId2488",
+ "sdkGroupId4394",
+ "sdkGroup2713",
+ "sdkFirst3504",
+ "sdkLast5759",
+ "sdkFirst.Last4710"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IdentityProviderTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IdentityProviderTests/CreateListUpdateDelete.json
index 8bba31386a791..3385757c31026 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IdentityProviderTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.IdentityProviderTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "878c7ace-0df8-4b18-a681-7d289541af65"
+ "5414deae-1144-4304-8b03-a2a6ae235ee9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:31 GMT"
+ "Fri, 09 Mar 2018 19:47:55 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c91ad95a-dd73-487f-adcf-6fad8b077920",
- "a06d3217-323c-43bc-a1dc-9f27cbb85240"
+ "a325fb81-2104-45c6-b191-be822ed47911",
+ "b5577e7a-d133-46ed-b79a-2961ef39f8bc"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "5df05360-185c-4360-9919-a8b4848e3ebf"
+ "f8db0f06-3276-4f09-9b50-89720738a583"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200031Z:5df05360-185c-4360-9919-a8b4848e3ebf"
+ "WESTUS2:20180309T194755Z:f8db0f06-3276-4f09-9b50-89720738a583"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1412c10-74c7-44e6-ad21-5dde5970e66a"
+ "bf944e60-e86a-4ee0-b92b-38445b801598"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:31 GMT"
+ "Fri, 09 Mar 2018 19:47:55 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "def1fa9f-54be-4191-948b-018b37e96792"
+ "a786f653-2670-427b-8e11-2d7fdf3b00d9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "c57c7ca4-9ca1-4c53-a6f0-f9f28481ec45"
+ "7ccb9bc6-74f1-4632-a3a1-9a17ef4c72c2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200032Z:c57c7ca4-9ca1-4c53-a6f0-f9f28481ec45"
+ "WESTUS2:20180309T194756Z:7ccb9bc6-74f1-4632-a3a1-9a17ef4c72c2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -145,7 +145,7 @@
"RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2018-01-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"clientId8283\",\r\n \"clientSecret\": \"clientSecret5968\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientId\": \"clientId3064\",\r\n \"clientSecret\": \"clientSecret5288\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -154,17 +154,17 @@
"101"
],
"x-ms-client-request-id": [
- "c7b3116c-8c58-490b-b9ea-84e0be14a2b6"
+ "4242fbd4-bf4f-4f34-a3b7-8fc4c1e4e595"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId8283\",\r\n \"clientSecret\": \"clientSecret5968\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId3064\",\r\n \"clientSecret\": \"clientSecret5288\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"398"
@@ -179,13 +179,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:32 GMT"
+ "Fri, 09 Mar 2018 19:47:56 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANsQ=\""
+ "\"AAAAAAAAOJE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -194,16 +194,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "32ec662d-1097-453c-bc5d-b00e4a37dc00"
+ "c7001470-18ef-4768-8222-2a89e4ffe61b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "e980b231-38f8-4107-9796-2db0f3760dc9"
+ "f6347c59-1c35-486c-b854-55441c1525ef"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200033Z:e980b231-38f8-4107-9796-2db0f3760dc9"
+ "WESTUS2:20180309T194756Z:f6347c59-1c35-486c-b854-55441c1525ef"
],
"X-Content-Type-Options": [
"nosniff"
@@ -218,17 +218,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08048242-fcda-4378-af7d-175e376e22c6"
+ "635f7a38-119e-43a0-84a6-8898187e0729"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId8283\",\r\n \"clientSecret\": \"clientSecret5968\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId3064\",\r\n \"clientSecret\": \"clientSecret5288\",\r\n \"type\": \"facebook\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -240,7 +240,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:32 GMT"
+ "Fri, 09 Mar 2018 19:47:56 GMT"
],
"Pragma": [
"no-cache"
@@ -258,16 +258,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db3538f0-2ffe-463e-b29e-3b574817e631"
+ "1daa87c0-775f-4044-b6f2-b4a3b92d877e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-correlation-request-id": [
- "c4c99076-21bd-410c-9bcd-fafe097b4f35"
+ "b1542ab2-943d-4a62-967f-90d4972f3846"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200033Z:c4c99076-21bd-410c-9bcd-fafe097b4f35"
+ "WESTUS2:20180309T194757Z:b1542ab2-943d-4a62-967f-90d4972f3846"
],
"X-Content-Type-Options": [
"nosniff"
@@ -282,14 +282,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe830384-f7a8-46a1-9e56-7a96307ea073"
+ "2441e14f-8919-4477-8a8b-7aaf9ef06c8b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -304,13 +304,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:32 GMT"
+ "Fri, 09 Mar 2018 19:47:56 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANsQ=\""
+ "\"AAAAAAAAOJE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,16 +319,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d98201db-839b-4c4e-b36b-7a724096e9d4"
+ "75552f12-925f-4094-8ea1-f9f6e56dc1ff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "0ae90e81-2801-4b0e-9c5d-53073e7d0321"
+ "88a5e001-75db-4dd5-bb35-f3bc9c31c7d1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200033Z:0ae90e81-2801-4b0e-9c5d-53073e7d0321"
+ "WESTUS2:20180309T194757Z:88a5e001-75db-4dd5-bb35-f3bc9c31c7d1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -343,14 +343,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18216456-483b-499c-8dcb-fb9921a302f9"
+ "126cdc65-ddc1-42fd-ab79-8338ff02f42c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -365,13 +365,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:32 GMT"
+ "Fri, 09 Mar 2018 19:47:57 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANsU=\""
+ "\"AAAAAAAAOJI=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -380,16 +380,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "41350818-8bff-4671-a95a-9fb70aedf78a"
+ "227523bb-a017-4bb1-8103-afe9fea8f970"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
],
"x-ms-correlation-request-id": [
- "814653dd-8ce6-4da5-9ada-9261aa707722"
+ "0302adea-5631-463f-bf60-71e3d33e57f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200033Z:814653dd-8ce6-4da5-9ada-9261aa707722"
+ "WESTUS2:20180309T194757Z:0302adea-5631-463f-bf60-71e3d33e57f7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -401,7 +401,7 @@
"RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/facebook?api-version=2018-01-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9pZGVudGl0eVByb3ZpZGVycy9mYWNlYm9vaz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"clientSecret1629\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"clientSecret\": \"clientSecret2111\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -410,17 +410,17 @@
"68"
],
"x-ms-client-request-id": [
- "9496643c-198b-4bc1-9440-9eef2e7a1af8"
+ "2bdf5a10-c44e-49d9-8507-7e84bf7e939e"
],
"If-Match": [
- "\"AAAAAAAANsQ=\""
+ "\"AAAAAAAAOJE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -432,7 +432,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:32 GMT"
+ "Fri, 09 Mar 2018 19:47:57 GMT"
],
"Pragma": [
"no-cache"
@@ -444,16 +444,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94f71b09-5ca4-432f-ab0f-7f74cf138700"
+ "f28c535e-3712-4ede-a8c6-c4f94fe23ea7"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "5c36852d-222a-4e91-b18b-26c258b6afa7"
+ "35a6f76f-f0a7-4b60-8777-aa84038807ce"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200033Z:5c36852d-222a-4e91-b18b-26c258b6afa7"
+ "WESTUS2:20180309T194757Z:35a6f76f-f0a7-4b60-8777-aa84038807ce"
],
"X-Content-Type-Options": [
"nosniff"
@@ -468,17 +468,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2000f415-6dd3-41ab-94bc-969bea2ac8d3"
+ "9294ef8d-d067-49f5-bea8-b87cbc2a797d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId8283\",\r\n \"clientSecret\": \"clientSecret1629\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/identityProviders/Facebook\",\r\n \"type\": \"Microsoft.ApiManagement/service/identityProviders\",\r\n \"name\": \"Facebook\",\r\n \"properties\": {\r\n \"clientId\": \"clientId3064\",\r\n \"clientSecret\": \"clientSecret2111\",\r\n \"type\": \"facebook\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -490,7 +490,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:32 GMT"
+ "Fri, 09 Mar 2018 19:47:57 GMT"
],
"Pragma": [
"no-cache"
@@ -499,7 +499,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANsU=\""
+ "\"AAAAAAAAOJI=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -511,16 +511,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3fb641b5-2e34-4a62-841f-48e8234f2e8b"
+ "248b3b43-fb07-4b02-b500-bd6ccb22e47f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14994"
],
"x-ms-correlation-request-id": [
- "45baffc3-26d1-43ba-b3ee-4308240eb4f0"
+ "68700a61-6c4f-433f-902d-5f0e964161ed"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200033Z:45baffc3-26d1-43ba-b3ee-4308240eb4f0"
+ "WESTUS2:20180309T194757Z:68700a61-6c4f-433f-902d-5f0e964161ed"
],
"X-Content-Type-Options": [
"nosniff"
@@ -535,14 +535,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11a5781d-291e-4646-a74c-c8acb4235f3a"
+ "3a04cafa-40f9-4bcf-96bd-8a56b1127a50"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"IdentityProvider not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -560,7 +560,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:33 GMT"
+ "Fri, 09 Mar 2018 19:47:58 GMT"
],
"Pragma": [
"no-cache"
@@ -572,16 +572,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "304c4e41-feec-47c4-95d0-9ae5fdfe6396"
+ "e3e0d4b2-6f5e-45d4-8977-171173cfd66c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14992"
],
"x-ms-correlation-request-id": [
- "8c4a8638-979d-4d72-8184-2f0c1314b797"
+ "71656863-f6bf-456e-a856-04971c83e147"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200034Z:8c4a8638-979d-4d72-8184-2f0c1314b797"
+ "WESTUS2:20180309T194758Z:71656863-f6bf-456e-a856-04971c83e147"
],
"X-Content-Type-Options": [
"nosniff"
@@ -596,17 +596,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b93e5b43-ff35-4e03-b019-59f17ba1390f"
+ "16597e44-3662-433b-8fc8-37fa64be32d9"
],
"If-Match": [
- "\"AAAAAAAANsU=\""
+ "\"AAAAAAAAOJI=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -621,7 +621,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:33 GMT"
+ "Fri, 09 Mar 2018 19:47:58 GMT"
],
"Pragma": [
"no-cache"
@@ -633,16 +633,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b807f468-921b-40e2-bf4b-31ae57268600"
+ "ec650dae-71e6-47c4-9dc2-d8fc66ba0a87"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "db9a01ed-0c63-41e6-9d66-92eee03030dd"
+ "4403f5bb-170d-4b94-bd09-b792075b6403"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200034Z:db9a01ed-0c63-41e6-9d66-92eee03030dd"
+ "WESTUS2:20180309T194758Z:4403f5bb-170d-4b94-bd09-b792075b6403"
],
"X-Content-Type-Options": [
"nosniff"
@@ -657,7 +657,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "391fa7dd-fdc1-4f8d-8622-24ef2dd644d9"
+ "300d38c7-bb22-45fb-9ae8-84c647bda4bf"
],
"If-Match": [
"*"
@@ -667,7 +667,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -679,7 +679,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:00:33 GMT"
+ "Fri, 09 Mar 2018 19:47:58 GMT"
],
"Pragma": [
"no-cache"
@@ -691,16 +691,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "209b06f0-0683-4aa2-9c9f-fb3aed6a9213"
+ "a973b7f3-fbd9-429f-982c-b6c50b869be9"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "008494aa-34b1-482d-86d4-cacc8c1b9e8b"
+ "7af9d44c-d48b-4591-b01f-cba29a128f24"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T200034Z:008494aa-34b1-482d-86d4-cacc8c1b9e8b"
+ "WESTUS2:20180309T194759Z:7af9d44c-d48b-4591-b01f-cba29a128f24"
],
"X-Content-Type-Options": [
"nosniff"
@@ -711,9 +711,9 @@
],
"Names": {
"CreateListUpdateDelete": [
- "clientId8283",
- "clientSecret5968",
- "clientSecret1629"
+ "clientId3064",
+ "clientSecret5288",
+ "clientSecret2111"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteApplicationInsights.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteApplicationInsights.json
index 28cf0030ae869..d5fc99e10781c 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteApplicationInsights.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteApplicationInsights.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "fda82083-4b35-455d-b065-f7bbe407fb43"
+ "9ad49401-edeb-4450-95c1-f1d93f9db953"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:20 GMT"
+ "Fri, 09 Mar 2018 21:45:10 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a74eacc8-ac52-4106-810d-caf11ab825d7",
- "aed90521-49e4-41fe-9c17-690faa28e03a"
+ "611af4ae-7bdd-451b-b266-c5f7ffc0b4c4",
+ "5e52d09a-ce99-427a-82ae-fa5a40bab285"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1199"
],
"x-ms-correlation-request-id": [
- "8cc5eeab-5d77-4343-9a3b-2254785dae54"
+ "f16b227d-af4a-4676-b4ca-129612586e61"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000720Z:8cc5eeab-5d77-4343-9a3b-2254785dae54"
+ "WESTUS2:20180309T214510Z:f16b227d-af4a-4676-b4ca-129612586e61"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17343b17-f599-4350-8682-2df83611ba10"
+ "7c0cb287-2297-4b94-88b1-4ec41992e4b5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:20 GMT"
+ "Fri, 09 Mar 2018 21:45:10 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,25 +124,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "97f6f214-4f50-4cc9-9aa2-bf72cb6146eb"
+ "42c34a64-5da3-47a9-833c-556df1c8d7a6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14976"
+ "14998"
],
"x-ms-correlation-request-id": [
- "a886c219-c938-4e50-bff9-71b1a72bc695"
+ "df961633-16df-44d7-bec7-572d13779352"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000720Z:a886c219-c938-4e50-bff9-71b1a72bc695"
+ "WESTUS2:20180309T214510Z:df961633-16df-44d7-bec7-572d13779352"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription1223\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"7a13856c-fed3-498e-afcd-e6a4b9718e52\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription8054\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"752b8b09-e286-456b-831d-5716e2cce57b\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -148,20 +154,20 @@
"215"
],
"x-ms-client-request-id": [
- "3755e369-38f8-4111-91e4-c01d620ad81f"
+ "05a0c453-225e-4099-ba73-993e39949567"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight5178\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription1223\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5a8b66ba50f4b80c404ecbc8}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight4191\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription8054\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5aa3006750f4b800a0f4436d}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "531"
+ "554"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:21 GMT"
+ "Fri, 09 Mar 2018 21:45:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANGw=\""
+ "\"AAAAAAAAOSU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,16 +194,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db86da67-51fd-49e8-a7c4-fcbf6212ec08"
+ "501ad82c-409f-425d-85f4-f78f6d680c63"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1198"
],
"x-ms-correlation-request-id": [
- "99493177-ede3-4351-aeaa-771e7800d49b"
+ "93df26e2-2b28-4644-bbc6-a9a8035386cf"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000721Z:99493177-ede3-4351-aeaa-771e7800d49b"
+ "WESTUS2:20180309T214511Z:93df26e2-2b28-4644-bbc6-a9a8035386cf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -209,17 +218,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83ab6986-bdda-49f8-bd65-608a8ca2441f"
+ "95567850-325a-4c94-96a9-c970d2a78347"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight5178\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription1223\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5a8b66ba50f4b80c404ecbc8}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight4191\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"newloggerDescription8054\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5aa3006750f4b800a0f4436d}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:21 GMT"
+ "Fri, 09 Mar 2018 21:45:11 GMT"
],
"Pragma": [
"no-cache"
@@ -249,35 +258,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98cb6af3-08f7-4fa1-8eb5-a1cb03c90d89"
+ "d8baaf89-05b7-4109-879d-612b6b0e0f40"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14997"
],
"x-ms-correlation-request-id": [
- "a4278c6e-86ee-43aa-9145-5ec666d4c31c"
+ "ab3d7c36-ece8-49a6-88e1-054422b57996"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000721Z:a4278c6e-86ee-43aa-9145-5ec666d4c31c"
+ "WESTUS2:20180309T214512Z:ab3d7c36-ece8-49a6-88e1-054422b57996"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fca09956-3d00-483c-b582-b396d16988eb"
+ "ac231e6b-d62b-40fc-a084-c7c87b5c779e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -292,13 +304,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:21 GMT"
+ "Fri, 09 Mar 2018 21:45:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANGw=\""
+ "\"AAAAAAAAOSU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -307,35 +319,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "80d0ac20-a4d4-4b82-9563-bf27e44a95a2"
+ "bda91e86-9281-40e5-bbcb-0bb5ec1c4f2d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14996"
],
"x-ms-correlation-request-id": [
- "6d6d9c6e-e1ea-4a08-936a-b5a0a717e03a"
+ "d4f1979a-0e7b-45fe-ab6e-ae8d3d4d47c8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000721Z:6d6d9c6e-e1ea-4a08-936a-b5a0a717e03a"
+ "WESTUS2:20180309T214512Z:d4f1979a-0e7b-45fe-ab6e-ae8d3d4d47c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d47ae342-52e3-491d-af84-dca317943f6b"
+ "4af8179f-6b11-489b-8aef-6c01c83080a7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -350,13 +365,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:22 GMT"
+ "Fri, 09 Mar 2018 21:45:12 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANG0=\""
+ "\"AAAAAAAAOSg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -365,25 +380,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "373047a7-1e6d-48ba-9766-41305f3f1558"
+ "e89a8a2a-dc35-470e-b32a-8463423275d2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14994"
],
"x-ms-correlation-request-id": [
- "db64c0d1-36c8-459c-9075-fc460c4d26f8"
+ "527a66d5-b968-444c-afdb-bd531e3bdff1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000722Z:db64c0d1-36c8-459c-9075-fc460c4d26f8"
+ "WESTUS2:20180309T214512Z:527a66d5-b968-444c-afdb-bd531e3bdff1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription5397\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription5211\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -392,17 +410,17 @@
"115"
],
"x-ms-client-request-id": [
- "bfaa1c7b-40de-4c63-8c79-ac76a4987263"
+ "e5ce7b84-9e64-4a3f-95d7-e4acb5e1efd9"
],
"If-Match": [
- "\"AAAAAAAANGw=\""
+ "\"AAAAAAAAOSU=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -414,7 +432,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:21 GMT"
+ "Fri, 09 Mar 2018 21:45:12 GMT"
],
"Pragma": [
"no-cache"
@@ -426,38 +444,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "643e5812-1225-4bd8-bec1-497dcc62da5c"
+ "e7dd3326-4830-4403-9347-dc9f3568dc53"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1197"
],
"x-ms-correlation-request-id": [
- "8937560f-bfb0-4cb9-9169-4b32a83e20e5"
+ "49bb4772-9ca2-475c-994a-6bbdf2a5803a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000722Z:8937560f-bfb0-4cb9-9169-4b32a83e20e5"
+ "WESTUS2:20180309T214512Z:49bb4772-9ca2-475c-994a-6bbdf2a5803a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7dbf5e48-c8f5-4e8f-bc06-2d6b6db6d82d"
+ "e6ee7e1c-c31b-4cbe-b3fb-443d61e345bb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight5178\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription5397\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5a8b66ba50f4b80c404ecbc8}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"applicationInsight4191\",\r\n \"properties\": {\r\n \"loggerType\": \"applicationInsights\",\r\n \"description\": \"patchedDescription5211\",\r\n \"credentials\": {\r\n \"instrumentationKey\": \"{{Logger-Credentials-5aa3006750f4b800a0f4436d}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -469,7 +490,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:22 GMT"
+ "Fri, 09 Mar 2018 21:45:12 GMT"
],
"Pragma": [
"no-cache"
@@ -478,7 +499,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANG0=\""
+ "\"AAAAAAAAOSg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -490,35 +511,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "93bb4bce-1908-44b9-a7b6-73351cb13745"
+ "f0f3aa03-a497-4b8d-84a7-b7db9e407373"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14995"
],
"x-ms-correlation-request-id": [
- "b11bb169-6d9f-41a0-8843-054ef332633e"
+ "48ce2901-fd40-46e6-be01-d2effdcc29de"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000722Z:b11bb169-6d9f-41a0-8843-054ef332633e"
+ "WESTUS2:20180309T214512Z:48ce2901-fd40-46e6-be01-d2effdcc29de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8b37b48-5e93-467a-aab2-fac837c56c07"
+ "570fb596-709a-4eac-a4e2-ce601ccf2a2e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Logger not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -536,7 +560,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:22 GMT"
+ "Fri, 09 Mar 2018 21:45:12 GMT"
],
"Pragma": [
"no-cache"
@@ -548,38 +572,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8f3959bc-79fb-475a-9402-a7162f3a041a"
+ "3676e67e-f916-4e68-b6a1-db6762a7c91e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14993"
],
"x-ms-correlation-request-id": [
- "f2bf35b9-b23c-42df-af9c-d0bd35da7b5b"
+ "3e30ce87-c33b-4a54-ab9c-37e840c5ade9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000722Z:f2bf35b9-b23c-42df-af9c-d0bd35da7b5b"
+ "WESTUS2:20180309T214513Z:3e30ce87-c33b-4a54-ab9c-37e840c5ade9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77040143-6758-4260-b5b9-ae13993b56ad"
+ "2e5a770f-c815-457a-96f1-0833c230328c"
],
"If-Match": [
- "\"AAAAAAAANG0=\""
+ "\"AAAAAAAAOSg=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -594,7 +621,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:22 GMT"
+ "Fri, 09 Mar 2018 21:45:12 GMT"
],
"Pragma": [
"no-cache"
@@ -606,28 +633,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2d74f5d6-40ca-4ba5-9c3e-3fcf6e47040e"
+ "9ddd4dc7-2cd1-42e2-abae-8194e606e057"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1196"
],
"x-ms-correlation-request-id": [
- "4cb9f810-5445-4af5-bf25-1ccd767e509f"
+ "65da40e0-f650-405b-a77e-ac9b782307de"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000722Z:4cb9f810-5445-4af5-bf25-1ccd767e509f"
+ "WESTUS2:20180309T214513Z:65da40e0-f650-405b-a77e-ac9b782307de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight5178?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDUxNzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/applicationInsight4191?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL2FwcGxpY2F0aW9uSW5zaWdodDQxOTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "daf92c95-bd7f-4812-a424-a54b600b0dd2"
+ "769a37ff-4643-4afe-ab3b-7a1c29067982"
],
"If-Match": [
"*"
@@ -637,7 +667,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -649,7 +679,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:22 GMT"
+ "Fri, 09 Mar 2018 21:45:12 GMT"
],
"Pragma": [
"no-cache"
@@ -661,29 +691,157 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0823434-d2b4-4200-aaf2-35d59ca90fe1"
+ "55509fa5-7d56-4a24-b4c8-8144910c3d0f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1195"
],
"x-ms-correlation-request-id": [
- "be4e99cd-7b2d-49ba-851d-368c20085ea7"
+ "a21fc9c1-e7a2-47f3-9acd-70a3001553ae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000722Z:be4e99cd-7b2d-49ba-851d-368c20085ea7"
+ "WESTUS2:20180309T214513Z:a21fc9c1-e7a2-47f3-9acd-70a3001553ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2818eb88-3509-4654-9d45-d835405bce53"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5aa3006750f4b800a0f4436c\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5aa3006750f4b800a0f4436c\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5aa3006750f4b800a0f4436d\",\r\n \"value\": \"752b8b09-e286-456b-831d-5716e2cce57b\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 09 Mar 2018 21:45:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0fbe99b7-efc2-4028-9687-26c4b3bca78e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e1d9cd5-21ee-4c60-8f76-13ad7838d87f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180309T214513Z:3e1d9cd5-21ee-4c60-8f76-13ad7838d87f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5aa3006750f4b800a0f4436c?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVhYTMwMDY3NTBmNGI4MDBhMGY0NDM2Yz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1857fc2d-d70f-44f8-88ea-69b84a19ee4a"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 09 Mar 2018 21:45:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b950d204-8664-43f7-ac36-003d4920bab9"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba02ccd2-9c98-42ea-a0f2-e2ebfe2f074b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180309T214513Z:ba02ccd2-9c98-42ea-a0f2-e2ebfe2f074b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
}
],
"Names": {
"CreateListUpdateDeleteApplicationInsights": [
- "applicationInsight5178",
- "newloggerDescription1223",
- "patchedDescription5397"
+ "applicationInsight4191",
+ "newloggerDescription8054",
+ "patchedDescription5211"
],
"appInsights": [
- "7a13856c-fed3-498e-afcd-e6a4b9718e52"
+ "752b8b09-e286-456b-831d-5716e2cce57b"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteEventHub.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteEventHub.json
index cfaabf2a9090f..5d63fc353fc0e 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteEventHub.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.LoggerTests/CreateListUpdateDeleteEventHub.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "9ac6e0d2-78da-4769-8fbf-76d84e35c11a"
+ "e61061dd-0031-4343-98ff-8513c9316c50"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:44 GMT"
+ "Fri, 09 Mar 2018 21:50:55 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "934618cf-57a4-462b-9abf-a93d31687249",
- "01a86766-5c20-45a8-92be-26bf1b65e22c"
+ "975ad46d-49ce-4bf6-9b54-f34dc8126f97",
+ "a29b8d7f-ee5f-4447-8cfb-c3d9465f129b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1199"
],
"x-ms-correlation-request-id": [
- "bc7c60c9-d31b-473c-b0ae-c1751951c9ec"
+ "8c791cf6-39bd-4b1c-865b-3a6da01e6682"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000744Z:bc7c60c9-d31b-473c-b0ae-c1751951c9ec"
+ "WESTUS2:20180309T215056Z:8c791cf6-39bd-4b1c-865b-3a6da01e6682"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57157c52-02f8-4e98-bb26-f5b4f50d7418"
+ "77f65875-532c-4e3e-a307-8b3b4adb3c73"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:44 GMT"
+ "Fri, 09 Mar 2018 21:50:55 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,23 +124,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b1a6c6ad-9b75-457f-9622-b58f6ee96cee"
+ "d8255e57-b229-4b7d-a87d-9eeb634894a5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14999"
],
"x-ms-correlation-request-id": [
- "8b373b27-a1a9-4073-9926-938180c5c520"
+ "79ce1024-7e8c-4082-9c3c-565fe3924e50"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000744Z:8b373b27-a1a9-4073-9926-938180c5c520"
+ "WESTUS2:20180309T215056Z:79ce1024-7e8c-4082-9c3c-565fe3924e50"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"CentralUS\"\r\n}",
"RequestHeaders": {
@@ -148,7 +154,7 @@
"31"
],
"x-ms-client-request-id": [
- "f6f9ddaa-a268-4819-a379-b7b5d342246f"
+ "26600beb-9a8b-41fd-b96a-307ab428c1a3"
],
"accept-language": [
"en-US"
@@ -158,7 +164,7 @@
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720\",\r\n \"name\": \"eventHubNamespace6720\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace6720\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686\",\r\n \"name\": \"eventHubNamespace5686\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace5686\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -170,7 +176,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:07:46 GMT"
+ "Fri, 09 Mar 2018 21:50:57 GMT"
],
"Pragma": [
"no-cache"
@@ -186,29 +192,32 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "68e4d2b3-eb51-4f65-8160-59ea9aaf2607_M3SN1_M3SN1"
+ "6216ffe1-7e03-44b5-a15e-b4c1a1263cc8_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "98d5b988-4ab9-41bd-8776-38ae3ad33beb"
+ "6f4d94bd-d8b9-4e5d-b3c5-da1693e2412d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000746Z:98d5b988-4ab9-41bd-8776-38ae3ad33beb"
+ "WESTUS2:20180309T215058Z:6f4d94bd-d8b9-4e5d-b3c5-da1693e2412d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -217,7 +226,7 @@
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720\",\r\n \"name\": \"eventHubNamespace6720\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace6720\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2018-02-20T00:07:45.803Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace6720.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-505\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2018-02-20T00:08:09.457Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686\",\r\n \"name\": \"eventHubNamespace5686\",\r\n \"type\": \"Microsoft.EventHub/namespaces\",\r\n \"location\": \"Central US\",\r\n \"kind\": \"EventHub\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"bab08e11-7b12-4354-9fd1-4b5d64d40b68:eventhubnamespace5686\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2018-03-09T21:50:56.117Z\",\r\n \"serviceBusEndpoint\": \"https://eventHubNamespace5686.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"scaleUnit\": \"DM2-505\",\r\n \"dataCenter\": \"DM2\",\r\n \"updatedAt\": \"2018-03-09T21:51:22.997Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"EventHub\",\r\n \"messagingSku\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -229,7 +238,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:16 GMT"
+ "Fri, 09 Mar 2018 21:51:28 GMT"
],
"Pragma": [
"no-cache"
@@ -245,29 +254,32 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "466bf87f-5d3e-4f61-96b4-ef0256105632_M3SN1_M3SN1"
+ "58d8fcdb-bebb-4a34-8d24-eed54237ca99_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "f44639fe-ad6f-4548-8d60-74bd2ac70a51"
+ "7209b1be-9d43-4718-911c-5aa00567673d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000816Z:f44639fe-ad6f-4548-8d60-74bd2ac70a51"
+ "WESTUS2:20180309T215128Z:7209b1be-9d43-4718-911c-5aa00567673d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/eventhubs/eventhubname3956?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzOTU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/eventhubs/eventhubname1218?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2L2V2ZW50aHVicy9ldmVudGh1Ym5hbWUxMjE4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"CentralUS\"\r\n}",
"RequestHeaders": {
@@ -278,7 +290,7 @@
"31"
],
"x-ms-client-request-id": [
- "eb60d9ee-81aa-4f3b-abc4-21e76d7401d6"
+ "f3acec69-2518-441f-bff9-3799669e21bb"
],
"accept-language": [
"en-US"
@@ -288,7 +300,7 @@
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/eventhubs/eventhubname3956\",\r\n \"name\": \"eventhubname3956\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"eventhubname3956\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2018-02-20T00:08:16.98Z\",\r\n \"updatedAt\": \"2018-02-20T00:08:26.29Z\",\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/eventhubs/eventhubname1218\",\r\n \"name\": \"eventhubname1218\",\r\n \"type\": \"Microsoft.EventHub/EventHubs\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"eventhubname1218\",\r\n \"messageRetentionInDays\": 7,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2018-03-09T21:51:30.293Z\",\r\n \"updatedAt\": \"2018-03-09T21:51:33.95Z\",\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -300,7 +312,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:32 GMT"
+ "Fri, 09 Mar 2018 21:51:39 GMT"
],
"Pragma": [
"no-cache"
@@ -316,29 +328,32 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "04e72626-2201-4395-aa42-80cd55b1a89e_M3SN1_M3SN1"
+ "4327d40d-b464-4cdf-9e99-3bab15fb4719_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-correlation-request-id": [
- "71f42cc6-edae-4d45-b495-269bc66ed583"
+ "33ae4ddb-3b20-40b0-a911-075d9bf12cf6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000833Z:71f42cc6-edae-4d45-b495-269bc66ed583"
+ "WESTUS2:20180309T215139Z:33ae4ddb-3b20-40b0-a911-075d9bf12cf6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/eventhubs/eventhubname3956/authorizationRules/sendPolicy6284?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzOTU2L2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5NjI4ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/eventhubs/eventhubname1218/authorizationRules/sendPolicy9338?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2L2V2ZW50aHVicy9ldmVudGh1Ym5hbWUxMjE4L2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5OTMzOD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
@@ -349,7 +364,7 @@
"66"
],
"x-ms-client-request-id": [
- "72e3a330-bd2c-4066-8320-6bd5a93214c5"
+ "85c98170-180b-41d6-b15b-703b5e544b0b"
],
"accept-language": [
"en-US"
@@ -359,7 +374,7 @@
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/eventhubs/eventhubname3956/authorizationRules/sendPolicy6284\",\r\n \"name\": \"sendPolicy6284\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/eventhubs/eventhubname1218/authorizationRules/sendPolicy9338\",\r\n \"name\": \"sendPolicy9338\",\r\n \"type\": \"Microsoft.EventHub/AuthorizationRules\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Send\"\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -371,7 +386,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:38 GMT"
+ "Fri, 09 Mar 2018 21:51:44 GMT"
],
"Pragma": [
"no-cache"
@@ -387,34 +402,37 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "cf9b8426-281f-4c9b-b12a-2d5db5f803e6_M3SN1_M3SN1"
+ "e6ab93a1-a5ab-46af-b1a9-73744a777e8b_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1197"
],
"x-ms-correlation-request-id": [
- "f56a97d8-06de-4e9b-a952-dee324d0ad2d"
+ "9ba89a4b-03e3-4e93-a24e-4f89f7d0a132"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000838Z:f56a97d8-06de-4e9b-a952-dee324d0ad2d"
+ "WESTUS2:20180309T215145Z:9ba89a4b-03e3-4e93-a24e-4f89f7d0a132"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/eventhubs/eventhubname3956/authorizationRules/sendPolicy6284/ListKeys?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzOTU2L2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5NjI4NC9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/eventhubs/eventhubname1218/authorizationRules/sendPolicy9338/ListKeys?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2L2V2ZW50aHVicy9ldmVudGh1Ym5hbWUxMjE4L2F1dGhvcml6YXRpb25SdWxlcy9zZW5kUG9saWN5OTMzOC9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "374f47cf-621e-4dfb-96af-3c46dd67cb3c"
+ "3b3ae7d3-ce8e-4553-9be7-53aeebe7a5c6"
],
"accept-language": [
"en-US"
@@ -424,7 +442,7 @@
"Microsoft.Azure.Management.EventHub.EventHubManagementClient/1.2.0.0"
]
},
- "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhubnamespace6720.servicebus.windows.net/;SharedAccessKeyName=sendPolicy6284;SharedAccessKey=IvMkcRHxwiMD34lZaW3tPkHocGTQzd/TxcBIy8ibeFg=;EntityPath=eventhubname3956\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhubnamespace6720.servicebus.windows.net/;SharedAccessKeyName=sendPolicy6284;SharedAccessKey=TPoOGATzAAMoHxR0ESDxq7sWnyTYqoktk3Vudcy+xWs=;EntityPath=eventhubname3956\",\r\n \"primaryKey\": \"IvMkcRHxwiMD34lZaW3tPkHocGTQzd/TxcBIy8ibeFg=\",\r\n \"secondaryKey\": \"TPoOGATzAAMoHxR0ESDxq7sWnyTYqoktk3Vudcy+xWs=\",\r\n \"keyName\": \"sendPolicy6284\"\r\n}",
+ "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://eventhubnamespace5686.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9338;SharedAccessKey=3yyEh97P+uhRDdkt2wEM39oxJkKH43VaLy0+OuErFms=;EntityPath=eventhubname1218\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://eventhubnamespace5686.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9338;SharedAccessKey=8sPrdJ6lwrTyMwRQMmwEucHuqOTmUNwA7AY2SkfH92Y=;EntityPath=eventhubname1218\",\r\n \"primaryKey\": \"3yyEh97P+uhRDdkt2wEM39oxJkKH43VaLy0+OuErFms=\",\r\n \"secondaryKey\": \"8sPrdJ6lwrTyMwRQMmwEucHuqOTmUNwA7AY2SkfH92Y=\",\r\n \"keyName\": \"sendPolicy9338\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -436,7 +454,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:38 GMT"
+ "Fri, 09 Mar 2018 21:51:44 GMT"
],
"Pragma": [
"no-cache"
@@ -452,31 +470,34 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "72530a60-4c0c-40ae-9315-af7b580128e1_M3SN1_M3SN1"
+ "48347822-44e6-443d-bb28-42d7de64f5e1_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1196"
],
"x-ms-correlation-request-id": [
- "d67c0556-bb11-4ac5-a0d1-29bc56e555d2"
+ "f01df83c-596c-4574-ac6e-779eb9fd05b6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000839Z:d67c0556-bb11-4ac5-a0d1-29bc56e555d2"
+ "WESTUS2:20180309T215145Z:f01df83c-596c-4574-ac6e-779eb9fd05b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription3287\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3956\",\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace6720.servicebus.windows.net/;SharedAccessKeyName=sendPolicy6284;SharedAccessKey=IvMkcRHxwiMD34lZaW3tPkHocGTQzd/TxcBIy8ibeFg=;EntityPath=eventhubname3956\"\r\n }\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription4509\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname1218\",\r\n \"connectionString\": \"Endpoint=sb://eventhubnamespace5686.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9338;SharedAccessKey=3yyEh97P+uhRDdkt2wEM39oxJkKH43VaLy0+OuErFms=;EntityPath=eventhubname1218\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -485,20 +506,20 @@
"389"
],
"x-ms-client-request-id": [
- "39cd79d3-464e-46f5-b23c-bfafe4a8d518"
+ "51946940-dd32-4ad3-acb9-1d04fae93238"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger2308\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription3287\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3956\",\r\n \"connectionString\": \"{{Logger-Credentials-5a8b670950f4b80c404ecbcd}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger3717\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription4509\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname1218\",\r\n \"connectionString\": \"{{Logger-Credentials-5aa301f250f4b800a0f44380}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "540"
+ "563"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -510,13 +531,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:39 GMT"
+ "Fri, 09 Mar 2018 21:51:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANG8=\""
+ "\"AAAAAAAAOUk=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -525,16 +546,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1a94cac9-2035-4660-9f30-35efd6e468d6"
+ "124c8f7a-3439-4fa4-93e8-57bdc1c5cccd"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1198"
],
"x-ms-correlation-request-id": [
- "e0463caf-256e-452f-b55a-2798f4c2ec42"
+ "e31da8db-ceaa-4483-8213-a3430857956b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000839Z:e0463caf-256e-452f-b55a-2798f4c2ec42"
+ "WESTUS2:20180309T215146Z:e31da8db-ceaa-4483-8213-a3430857956b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -546,17 +570,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79a90cc1-c49b-43fc-902f-540a3c7af6af"
+ "426489c0-b3c4-4386-8b42-1bc17951a9c7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger2308\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription3287\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3956\",\r\n \"connectionString\": \"{{Logger-Credentials-5a8b670950f4b80c404ecbcd}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger3717\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"newloggerDescription4509\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname1218\",\r\n \"connectionString\": \"{{Logger-Credentials-5aa301f250f4b800a0f44380}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -568,7 +592,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:40 GMT"
+ "Fri, 09 Mar 2018 21:51:46 GMT"
],
"Pragma": [
"no-cache"
@@ -586,35 +610,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f22f64ee-6e80-4542-90c4-b9e3cf35023e"
+ "417a3322-f84d-4bda-990d-d31bf4bd73b8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14998"
],
"x-ms-correlation-request-id": [
- "84b13a78-0d79-4c33-b5d2-835ce770fa34"
+ "e83c6f4e-6b0f-448e-99d7-5250b3e8e2cc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000840Z:84b13a78-0d79-4c33-b5d2-835ce770fa34"
+ "WESTUS2:20180309T215146Z:e83c6f4e-6b0f-448e-99d7-5250b3e8e2cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34d4e880-9f61-452e-883f-eb7c83783f99"
+ "1bcef057-a9ac-41ea-b6f9-31af1c9fde00"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -629,13 +656,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:40 GMT"
+ "Fri, 09 Mar 2018 21:51:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANG8=\""
+ "\"AAAAAAAAOUk=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -644,35 +671,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "54c4fe82-d193-41bd-a67e-db17845aa428"
+ "3b6f24a3-9053-4c85-a32f-2ae547da55af"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14997"
],
"x-ms-correlation-request-id": [
- "50335376-e023-41b7-bcf8-b486ed01cff3"
+ "729b8bf6-9daf-4c73-915e-833575ba2454"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000840Z:50335376-e023-41b7-bcf8-b486ed01cff3"
+ "WESTUS2:20180309T215146Z:729b8bf6-9daf-4c73-915e-833575ba2454"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92fe7bae-5d60-4697-ae0d-c1a3bb7dc527"
+ "3769cfce-3e85-4dd7-9974-9c7340264b9d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -687,13 +717,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:40 GMT"
+ "Fri, 09 Mar 2018 21:51:46 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANHA=\""
+ "\"AAAAAAAAOUw=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -702,25 +732,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "00f1e3b7-478d-45e0-bd8f-1d2342faf1bd"
+ "b7b22b17-0353-4bf6-aca3-176205c65f3c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14995"
],
"x-ms-correlation-request-id": [
- "0b6d7f3b-0fbb-4032-b898-f71bcae601b8"
+ "fab927f9-1172-4634-b9c5-c6cfb0fd879a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000840Z:0b6d7f3b-0fbb-4032-b898-f71bcae601b8"
+ "WESTUS2:20180309T215147Z:fab927f9-1172-4634-b9c5-c6cfb0fd879a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription4333\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription5593\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -729,17 +762,17 @@
"109"
],
"x-ms-client-request-id": [
- "b76421a6-c3ce-4612-af5f-735c8bd9e07d"
+ "2cb1f26f-909d-41ea-8f6e-1b8b266e8268"
],
"If-Match": [
- "\"AAAAAAAANG8=\""
+ "\"AAAAAAAAOUk=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -751,7 +784,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:40 GMT"
+ "Fri, 09 Mar 2018 21:51:46 GMT"
],
"Pragma": [
"no-cache"
@@ -763,38 +796,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "66d3d152-039f-4e54-9ad4-7c53a1c3108b"
+ "a18721ef-390d-459c-b83e-6257094abf36"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1197"
],
"x-ms-correlation-request-id": [
- "24cc0b2e-dbea-4dea-aaa6-1aad0def2d2b"
+ "ee5de26b-55d4-4e7b-a46d-6ae95ed330a6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000840Z:24cc0b2e-dbea-4dea-aaa6-1aad0def2d2b"
+ "WESTUS2:20180309T215147Z:ee5de26b-55d4-4e7b-a46d-6ae95ed330a6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "597cd3c5-9ee8-4b9b-9571-432cb94db0d1"
+ "19d3090e-168e-4a4d-a467-b9276fd6e1b7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger2308\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription4333\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname3956\",\r\n \"connectionString\": \"{{Logger-Credentials-5a8b670950f4b80c404ecbcd}}\"\r\n },\r\n \"isBuffered\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717\",\r\n \"type\": \"Microsoft.ApiManagement/service/loggers\",\r\n \"name\": \"newlogger3717\",\r\n \"properties\": {\r\n \"loggerType\": \"azureEventHub\",\r\n \"description\": \"patchedDescription5593\",\r\n \"credentials\": {\r\n \"name\": \"eventhubname1218\",\r\n \"connectionString\": \"{{Logger-Credentials-5aa301f250f4b800a0f44380}}\"\r\n },\r\n \"isBuffered\": true,\r\n \"sampling\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -806,7 +842,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:40 GMT"
+ "Fri, 09 Mar 2018 21:51:46 GMT"
],
"Pragma": [
"no-cache"
@@ -815,7 +851,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANHA=\""
+ "\"AAAAAAAAOUw=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -827,35 +863,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ec3cd70-d4a2-42dd-bfc9-c041e8858b63"
+ "5ae03baf-3e7f-4770-95f0-e86f12211a9d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14996"
],
"x-ms-correlation-request-id": [
- "633a0bc0-cb33-406d-9a8d-aeae29530d9f"
+ "19876df6-c66e-4fa5-9654-aacf0effaf84"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000840Z:633a0bc0-cb33-406d-9a8d-aeae29530d9f"
+ "WESTUS2:20180309T215147Z:19876df6-c66e-4fa5-9654-aacf0effaf84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ed91cf9-28be-40f8-9cb6-3e827a38c42a"
+ "04ac946c-ad66-445e-b72b-9115216d8de9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Logger not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -873,7 +912,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:41 GMT"
+ "Fri, 09 Mar 2018 21:51:47 GMT"
],
"Pragma": [
"no-cache"
@@ -885,38 +924,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df03843d-5d01-4ceb-b6e3-a36c976ef4c5"
+ "3b75c7d9-30fe-4f9f-8d7b-535c62c60e56"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14994"
],
"x-ms-correlation-request-id": [
- "47cf28f4-d7cb-4d90-ae20-bf42ff873be0"
+ "80496072-88e0-4a16-ba40-ec293189f532"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000841Z:47cf28f4-d7cb-4d90-ae20-bf42ff873be0"
+ "WESTUS2:20180309T215147Z:80496072-88e0-4a16-ba40-ec293189f532"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "740b4d2d-043a-493c-ba85-5d8f5dadc408"
+ "44e5ac2b-4431-4e17-9208-786922b80199"
],
"If-Match": [
- "\"AAAAAAAANHA=\""
+ "\"AAAAAAAAOUw=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -931,7 +973,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:41 GMT"
+ "Fri, 09 Mar 2018 21:51:47 GMT"
],
"Pragma": [
"no-cache"
@@ -943,28 +985,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "825a1c34-9ba4-4b98-8676-157e922227fb"
+ "d57727f0-5428-4bf4-a4d0-4b4e35072889"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1196"
],
"x-ms-correlation-request-id": [
- "9f207804-3a49-4e25-8836-7df5df388136"
+ "46f82008-60cb-4528-a29b-b27ca9810c4a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000841Z:9f207804-3a49-4e25-8836-7df5df388136"
+ "WESTUS2:20180309T215147Z:46f82008-60cb-4528-a29b-b27ca9810c4a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger2308?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjIzMDg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/loggers/newlogger3717?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9sb2dnZXJzL25ld2xvZ2dlcjM3MTc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b452c1d-f001-41ec-8580-2b5d355fb441"
+ "63742e95-5dc3-427c-a857-bb13abcfea54"
],
"If-Match": [
"*"
@@ -974,7 +1019,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -986,7 +1031,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:41 GMT"
+ "Fri, 09 Mar 2018 21:51:47 GMT"
],
"Pragma": [
"no-cache"
@@ -998,28 +1043,156 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9dd3375-1542-42f2-a882-b06133d0789c"
+ "d88773fc-6344-4a05-91d1-bb50db1b5d3b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1195"
],
"x-ms-correlation-request-id": [
- "9d35e59c-e313-470b-8275-d585316aae18"
+ "5c5517ff-67dc-4890-ac05-967422f16a87"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000841Z:9d35e59c-e313-470b-8275-d585316aae18"
+ "WESTUS2:20180309T215148Z:5c5517ff-67dc-4890-ac05-967422f16a87"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/eventhubs/eventhubname3956?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwL2V2ZW50aHVicy9ldmVudGh1Ym5hbWUzOTU2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "23fa4e2c-f881-4f4d-94ae-c3ebcb4c978b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5aa301f250f4b800a0f4437f\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"5aa301f250f4b800a0f4437f\",\r\n \"properties\": {\r\n \"displayName\": \"Logger-Credentials-5aa301f250f4b800a0f44380\",\r\n \"value\": \"Endpoint=sb://eventhubnamespace5686.servicebus.windows.net/;SharedAccessKeyName=sendPolicy9338;SharedAccessKey=3yyEh97P+uhRDdkt2wEM39oxJkKH43VaLy0+OuErFms=;EntityPath=eventhubname1218\",\r\n \"tags\": null,\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 09 Mar 2018 21:51:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9f6694b5-08dd-4b27-8e00-9ab4d7a43f91"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf2de27a-ddc1-4f3a-9efe-89ae1cb0071a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180309T215148Z:cf2de27a-ddc1-4f3a-9efe-89ae1cb0071a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/5aa301f250f4b800a0f4437f?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzLzVhYTMwMWYyNTBmNGI4MDBhMGY0NDM3Zj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "057c6ea3-5215-475c-ba53-0fe4831484c7"
+ "89add217-458b-442e-8f9b-82f4181f6e60"
+ ],
+ "If-Match": [
+ "*"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 09 Mar 2018 21:51:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5715e087-281b-4984-be41-cccee5edc58d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "75b0b854-5042-4c09-a149-f64264b1d7ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180309T215148Z:75b0b854-5042-4c09-a149-f64264b1d7ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/eventhubs/eventhubname1218?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2L2V2ZW50aHVicy9ldmVudGh1Ym5hbWUxMjE4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7e4ee12f-f9d3-42ff-9bfd-7b5dd8b0e067"
],
"accept-language": [
"en-US"
@@ -1041,7 +1214,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:42 GMT"
+ "Fri, 09 Mar 2018 21:51:48 GMT"
],
"Pragma": [
"no-cache"
@@ -1057,28 +1230,31 @@
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1195"
],
"x-ms-request-id": [
- "7920cda9-05ea-483a-927f-25ce3cbee310"
+ "b1890357-d27e-445f-9626-2557b93c6529"
],
"x-ms-correlation-request-id": [
- "7920cda9-05ea-483a-927f-25ce3cbee310"
+ "b1890357-d27e-445f-9626-2557b93c6529"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000842Z:7920cda9-05ea-483a-927f-25ce3cbee310"
+ "WESTUS2:20180309T215149Z:b1890357-d27e-445f-9626-2557b93c6529"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f8ef990-93b6-47ef-b6e6-e2e16d64a3a4"
+ "f672415a-b9e7-4d87-86b2-9330ea3a6f20"
],
"accept-language": [
"en-US"
@@ -1100,42 +1276,45 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:08:43 GMT"
+ "Fri, 09 Mar 2018 21:51:50 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/operationresults/eventHubNamespace6720?api-version=2015-08-01"
+ "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/operationresults/eventHubNamespace5686?api-version=2015-08-01"
],
"Server": [
"Service-Bus-Resource-Provider/SN1",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "3e9c0a92-5746-4332-9f88-644256193e51_M3SN1_M3SN1"
+ "40bfad64-f038-41d7-a819-710ccb9af82e_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1194"
],
"x-ms-correlation-request-id": [
- "32922f4b-204f-4e84-a295-5199a90494aa"
+ "d4c3ba74-2c7a-461c-a7b5-68255f9aa0ad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000843Z:32922f4b-204f-4e84-a295-5199a90494aa"
+ "WESTUS2:20180309T215150Z:d4c3ba74-2c7a-461c-a7b5-68255f9aa0ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace6720/operationresults/eventHubNamespace6720?api-version=2015-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwL29wZXJhdGlvbnJlc3VsdHMvZXZlbnRIdWJOYW1lc3BhY2U2NzIwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.EventHub/namespaces/eventHubNamespace5686/operationresults/eventHubNamespace5686?api-version=2015-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2L29wZXJhdGlvbnJlc3VsdHMvZXZlbnRIdWJOYW1lc3BhY2U1Njg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1156,7 +1335,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:09:12 GMT"
+ "Fri, 09 Mar 2018 21:52:22 GMT"
],
"Pragma": [
"no-cache"
@@ -1166,22 +1345,25 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "99504a2a-c85d-4b33-9044-d76e5a61aa1c_M3SN1_M3SN1"
+ "be100ad0-3ec4-4c41-8e3b-e04e894495dc_M4SN1_M4SN1"
],
"Server-SB": [
"Service-Bus-Resource-Provider/SN1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "4e3bf98b-823e-4a96-af8b-bade3dbe1604"
+ "db871050-f4c7-4ce4-b7da-d6e2c397d80f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000913Z:4e3bf98b-823e-4a96-af8b-bade3dbe1604"
+ "WESTUS2:20180309T215222Z:db871050-f4c7-4ce4-b7da-d6e2c397d80f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -1189,12 +1371,12 @@
],
"Names": {
"CreateListUpdateDeleteEventHub": [
- "newlogger2308",
- "eventHubNamespace6720",
- "eventhubname3956",
- "sendPolicy6284",
- "newloggerDescription3287",
- "patchedDescription4333"
+ "newlogger3717",
+ "eventHubNamespace5686",
+ "eventhubname1218",
+ "sendPolicy9338",
+ "newloggerDescription4509",
+ "patchedDescription5593"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientEmail.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientEmail.json
index b5309d1302efd..ad85a69de1d9f 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientEmail.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientEmail.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "771a8a5b-bc1a-4058-940d-7a4f5fa92153"
+ "b1d3a514-e86f-48a4-9223-1a9c98ce77e6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:23 GMT"
+ "Fri, 09 Mar 2018 19:50:08 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e8824c9-93af-4714-9496-25967422a5f8",
- "bfeac761-0e76-40d5-a07e-dd4d7a3eb809"
+ "4a239c4e-f513-42a6-af3e-d9e99096b4e9",
+ "275ce397-848d-4cf7-9eeb-08f57140fa50"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "ac438631-fb4b-4690-843c-500254c22aad"
+ "d3dd2faa-7e58-45d4-a377-362fb60d541d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065224Z:ac438631-fb4b-4690-843c-500254c22aad"
+ "WESTUS2:20180309T195009Z:d3dd2faa-7e58-45d4-a377-362fb60d541d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f4c5c92-c34b-4462-af47-89ee5ba819c1"
+ "0cb0d518-8cb7-4379-98fc-f9edc4e093b3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:23 GMT"
+ "Fri, 09 Mar 2018 19:50:08 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4f3aa22b-350e-4a26-8152-4d4e6ddc21e8"
+ "f8df8045-c57e-45db-899c-75c0f529de2e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "48e93173-3830-47f4-bf19-e19129fae6e1"
+ "970007f3-81a3-490e-84bf-f25b3ac9d9c0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065224Z:48e93173-3830-47f4-bf19-e19129fae6e1"
+ "WESTUS2:20180309T195009Z:970007f3-81a3-490e-84bf-f25b3ac9d9c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1a1aa32b-7b7d-4965-9d08-4a38a647de8a"
+ "68b9a34a-d3c9-428d-b461-dfbe05aa35bc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/PurchasePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"PurchasePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New subscriptions\",\r\n \"description\": \"The following email recipients and users will receive email notifications about new API product subscriptions.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewApplicationNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewApplicationNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Application gallery requests\",\r\n \"description\": \"The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/BCC\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"BCC\",\r\n \"properties\": {\r\n \"title\": \"BCC\",\r\n \"description\": \"The following recipients will receive blind carbon copies of all emails sent to developers.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewIssuePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewIssuePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New issue or comment\",\r\n \"description\": \"The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/AccountClosedPublisher\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"AccountClosedPublisher\",\r\n \"properties\": {\r\n \"title\": \"Close account message\",\r\n \"description\": \"The following email recipients and users will receive email notifications when developer closes his account\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Approaching subscription quota limit\",\r\n \"description\": \"The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:24 GMT"
+ "Fri, 09 Mar 2018 19:50:08 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9f07ee07-3f8c-4035-851e-04251c0502d4"
+ "4801ba81-2946-4ef1-b24f-c41cc7eecc19"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "2efe3348-4a8c-4415-9b8a-ddeabc44c112"
+ "ae624104-75a0-40ef-a86d-5ce928e4553f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065224Z:2efe3348-4a8c-4415-9b8a-ddeabc44c112"
+ "WESTUS2:20180309T195009Z:ae624104-75a0-40ef-a86d-5ce928e4553f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95231576-3177-4dc9-88c9-bf37ac215dcd"
+ "d259205a-9eab-4f80-9188-e6f5c94cac1f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientEmails/contoso@microsoft.com\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications/recipientEmails\",\r\n \"name\": \"contoso@microsoft.com\",\r\n \"properties\": {\r\n \"email\": \"contoso@microsoft.com\"\r\n }\r\n}",
@@ -228,7 +237,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:24 GMT"
+ "Fri, 09 Mar 2018 19:50:09 GMT"
],
"Pragma": [
"no-cache"
@@ -240,16 +249,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f8e93f32-ee26-41c5-ba42-33daaf7a0b63"
+ "1cc5cfdd-53b7-4928-87a1-1787897c2b10"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "5dc8e87b-4cc0-4676-8b28-ca3476767f7a"
+ "091795d8-e5f3-48d9-8e15-d5bf24beac46"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065225Z:5dc8e87b-4cc0-4676-8b28-ca3476767f7a"
+ "WESTUS2:20180309T195010Z:091795d8-e5f3-48d9-8e15-d5bf24beac46"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -261,14 +273,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10f1b516-80ad-40a7-9e1a-5ebc7ecec55e"
+ "7b9a780c-2adc-460f-a101-7293c224b6c1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -283,7 +295,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:25 GMT"
+ "Fri, 09 Mar 2018 19:50:09 GMT"
],
"Pragma": [
"no-cache"
@@ -295,16 +307,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0e84d083-07ec-43f8-9066-3c4db9c9d0a4"
+ "8c70374b-5471-49c5-997f-a15b95372bfc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "7eacdeef-54e3-41f7-9286-aa38be37084d"
+ "490ad1fc-1e32-4908-8f7c-66e2032a3c16"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065226Z:7eacdeef-54e3-41f7-9286-aa38be37084d"
+ "WESTUS2:20180309T195010Z:490ad1fc-1e32-4908-8f7c-66e2032a3c16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -316,14 +331,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e7c5d53-8826-4417-8d95-ea45ca0a8115"
+ "12ecc097-5408-4e92-81ca-79d04d4aadc3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -338,7 +353,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:25 GMT"
+ "Fri, 09 Mar 2018 19:50:10 GMT"
],
"Pragma": [
"no-cache"
@@ -350,16 +365,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0773224f-17eb-4faf-89da-d534248f7469"
+ "4573ab0d-5525-47bd-8f35-c71689c16e3e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "25e31bce-82ed-4f2b-8e70-b7f93527e71d"
+ "45b30121-10df-4bd6-81b0-73d3232c42cb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065226Z:25e31bce-82ed-4f2b-8e70-b7f93527e71d"
+ "WESTUS2:20180309T195011Z:45b30121-10df-4bd6-81b0-73d3232c42cb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -371,14 +389,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eabb09c2-5d8d-4230-b484-c0028e6f1c4c"
+ "b7f2b0f6-2131-4527-a4a0-b2946c4c969a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [\r\n \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/recipientEmails/contoso@microsoft.com\"\r\n ],\r\n \"users\": []\r\n }\r\n }\r\n}",
@@ -393,7 +411,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:25 GMT"
+ "Fri, 09 Mar 2018 19:50:09 GMT"
],
"Pragma": [
"no-cache"
@@ -411,16 +429,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9405bc13-775a-4876-ac75-a1ba13a73e96"
+ "11287cc1-88a6-44c8-a357-7dfa86bc00d6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "6209e0d3-865a-447f-8b38-9e68e7ba39b4"
+ "f733b0d0-4728-4516-96df-b3d0eca70328"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065226Z:6209e0d3-865a-447f-8b38-9e68e7ba39b4"
+ "WESTUS2:20180309T195010Z:f733b0d0-4728-4516-96df-b3d0eca70328"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -432,14 +453,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82a0cbe4-4d61-4375-b83a-2d9f8a632cad"
+ "e90682a3-b858-4b6f-b6e5-d0975dc8af29"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -454,7 +475,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:52:25 GMT"
+ "Fri, 09 Mar 2018 19:50:10 GMT"
],
"Pragma": [
"no-cache"
@@ -466,16 +487,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2aa71899-482a-4d17-a2d6-1187d4ce4fde"
+ "2bd26ab9-6302-4d67-96a7-ea77b2dfd881"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "9a31d3ca-21b6-48b0-a45d-28ce143ef798"
+ "6d6aeb6c-25d3-4d44-8ccb-9f24f4980b63"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065226Z:9a31d3ca-21b6-48b0-a45d-28ce143ef798"
+ "WESTUS2:20180309T195011Z:6d6aeb6c-25d3-4d44-8ccb-9f24f4980b63"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientUser.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientUser.json
index 59d7c93fa4494..41057f61d5f83 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientUser.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.NotificationTests/UpdateDeleteRecipientUser.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "6796f4c1-6f0b-4099-b626-45392124a82b"
+ "d5235b08-e47e-4ecd-910a-5dc852c12bba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:27 GMT"
+ "Fri, 09 Mar 2018 19:49:33 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8edd34ce-9e21-40b4-b6bb-e23cbf1da495",
- "1f8d8675-d841-4538-bc19-38c9587d488d"
+ "dd296cab-1188-4493-ab13-ce514c7bb9e7",
+ "426c74d6-b5bb-4e85-b610-d73f6b9547fb"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "b98c4b18-4134-43cc-b9e5-1f5e2aff3c3f"
+ "2ead8fc9-4949-429d-bf15-dec49f73a96c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065328Z:b98c4b18-4134-43cc-b9e5-1f5e2aff3c3f"
+ "WESTUS2:20180309T194934Z:2ead8fc9-4949-429d-bf15-dec49f73a96c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c90c0a43-eebd-4134-9db0-3050d02b1a10"
+ "a19811da-afcc-4520-83f9-ff55dd930670"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:28 GMT"
+ "Fri, 09 Mar 2018 19:49:33 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c681b49a-abf9-4bf2-844e-af68611c4bdd"
+ "fe74bc05-3f81-4ad2-b332-c3074f282249"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14997"
],
"x-ms-correlation-request-id": [
- "bce85e4d-2f72-4560-8e04-80a9c9416835"
+ "1d076e5e-2735-4b80-bdac-ef3cf6bbd8ba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065328Z:bce85e4d-2f72-4560-8e04-80a9c9416835"
+ "WESTUS2:20180309T194934Z:1d076e5e-2735-4b80-bdac-ef3cf6bbd8ba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78971d09-ef72-428c-b03f-98afc7052677"
+ "a204e956-3102-4022-a451-40de35c07181"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/PurchasePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"PurchasePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New subscriptions\",\r\n \"description\": \"The following email recipients and users will receive email notifications about new API product subscriptions.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewApplicationNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewApplicationNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Application gallery requests\",\r\n \"description\": \"The following email recipients and users will receive email notifications when new applications are submitted to the application gallery.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/BCC\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"BCC\",\r\n \"properties\": {\r\n \"title\": \"BCC\",\r\n \"description\": \"The following recipients will receive blind carbon copies of all emails sent to developers.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/NewIssuePublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"NewIssuePublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"New issue or comment\",\r\n \"description\": \"The following email recipients and users will receive email notifications when a new issue or comment is submitted on the developer portal.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/AccountClosedPublisher\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"AccountClosedPublisher\",\r\n \"properties\": {\r\n \"title\": \"Close account message\",\r\n \"description\": \"The following email recipients and users will receive email notifications when developer closes his account\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"QuotaLimitApproachingPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Approaching subscription quota limit\",\r\n \"description\": \"The following email recipients and users will receive email notifications when subscription usage gets close to usage quota.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:28 GMT"
+ "Fri, 09 Mar 2018 19:49:34 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0f8a701f-ec59-44f8-891a-030031c16949"
+ "f54b219b-3f14-4468-b11c-55ef210d7c62"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14996"
],
"x-ms-correlation-request-id": [
- "22f67339-8853-4ae0-be58-6c66bb6fde67"
+ "136cf124-9fe5-46ef-8f10-457445690388"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065328Z:22f67339-8853-4ae0-be58-6c66bb6fde67"
+ "WESTUS2:20180309T194935Z:136cf124-9fe5-46ef-8f10-457445690388"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9bbb6350-03f4-409a-972d-db65362d9522"
+ "55c65d53-2a50-476c-95d8-bf51c2b0f89c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:28 GMT"
+ "Fri, 09 Mar 2018 19:49:35 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52e1b2a2-8c52-4f6c-ab38-a14180f1a346"
+ "7a724190-469c-416e-a5e3-76c11c38db64"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14995"
],
"x-ms-correlation-request-id": [
- "ac833ed3-b0dd-4114-9d6e-c7bf42056afa"
+ "25475220-477a-4fcc-be3b-58eb43668ba8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065328Z:ac833ed3-b0dd-4114-9d6e-c7bf42056afa"
+ "WESTUS2:20180309T194935Z:25475220-477a-4fcc-be3b-58eb43668ba8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f467df7d-3ab7-41a8-8c3c-34cd37e78b27"
+ "5fd26b32-4ac5-42eb-be61-33e22da8ccc9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage/recipientUsers/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications/recipientUsers\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n }\r\n}",
@@ -289,7 +301,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:29 GMT"
+ "Fri, 09 Mar 2018 19:49:35 GMT"
],
"Pragma": [
"no-cache"
@@ -301,16 +313,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6abad666-bc43-4904-a1a1-65c4061f937f"
+ "29e5740c-52b9-4e36-995d-4f7d5cf4de96"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "5674a30e-4324-4e1f-9412-fc3f13fd9f95"
+ "390d2bbe-7897-4a39-9cbb-2830f8fc3afc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065329Z:5674a30e-4324-4e1f-9412-fc3f13fd9f95"
+ "WESTUS2:20180309T194936Z:390d2bbe-7897-4a39-9cbb-2830f8fc3afc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -322,14 +337,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3320f8ae-1445-4f33-bb1d-d0456d33d418"
+ "fae24e3d-b90c-47ea-8558-4633ceb0ac60"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -344,7 +359,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:29 GMT"
+ "Fri, 09 Mar 2018 19:49:35 GMT"
],
"Pragma": [
"no-cache"
@@ -356,16 +371,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1bcd6ae2-a589-419b-9897-f756b24273ea"
+ "0836d981-3487-4571-b48a-84ef6ef9f758"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14994"
],
"x-ms-correlation-request-id": [
- "e3eb5dc0-6792-4e99-bad2-f870ae9f9de9"
+ "e7465543-8cf4-469b-8f1d-143867f75035"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065329Z:e3eb5dc0-6792-4e99-bad2-f870ae9f9de9"
+ "WESTUS2:20180309T194936Z:e7465543-8cf4-469b-8f1d-143867f75035"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -377,14 +395,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54c17f87-ddaa-4aef-99d5-58de6ba11127"
+ "78c016ab-da57-4c22-93a9-89c231f32697"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -399,7 +417,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:30 GMT"
+ "Fri, 09 Mar 2018 19:49:36 GMT"
],
"Pragma": [
"no-cache"
@@ -411,16 +429,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "35a26260-b073-45a6-93b0-57f038e5d782"
+ "d6bc4d21-b53b-4cae-8415-beb82af62fb8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14992"
],
"x-ms-correlation-request-id": [
- "98bcc4a1-0726-4c08-b66c-f605ce6b628f"
+ "05f833de-fe94-49c9-a841-12ad132fd280"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065330Z:98bcc4a1-0726-4c08-b66c-f605ce6b628f"
+ "WESTUS2:20180309T194937Z:05f833de-fe94-49c9-a841-12ad132fd280"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -432,14 +453,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c01ff931-473e-439d-9a6e-f42ec0655ecf"
+ "72088fc0-0c82-4e3d-a7f6-7ee02db9eeb4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/notifications/RequestPublisherNotificationMessage\",\r\n \"type\": \"Microsoft.ApiManagement/service/notifications\",\r\n \"name\": \"RequestPublisherNotificationMessage\",\r\n \"properties\": {\r\n \"title\": \"Subscription requests (requiring approval)\",\r\n \"description\": \"The following email recipients and users will receive email notifications about subscription requests for API products requiring approval.\",\r\n \"recipients\": {\r\n \"emails\": [],\r\n \"users\": [\r\n \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\"\r\n ]\r\n }\r\n }\r\n}",
@@ -454,7 +475,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:29 GMT"
+ "Fri, 09 Mar 2018 19:49:36 GMT"
],
"Pragma": [
"no-cache"
@@ -472,16 +493,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "557c00b9-c4e7-4056-bb7c-789385caea6c"
+ "f5050046-92c2-482f-949a-b0b9f5116ba9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14993"
],
"x-ms-correlation-request-id": [
- "82b056cb-0250-4661-952f-ad1f94fce363"
+ "c1893aca-e6b1-4854-b194-be50244f1e4e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065329Z:82b056cb-0250-4661-952f-ad1f94fce363"
+ "WESTUS2:20180309T194936Z:c1893aca-e6b1-4854-b194-be50244f1e4e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -493,14 +517,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b74b822-88c0-4edc-aefd-f049c77c1c83"
+ "2cdecf80-2707-4629-bb34-b561242407e7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -515,7 +539,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 06:53:29 GMT"
+ "Fri, 09 Mar 2018 19:49:36 GMT"
],
"Pragma": [
"no-cache"
@@ -527,16 +551,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "659117be-82bc-45af-936f-8609d7cec027"
+ "c8ac0a35-36cd-49f6-b504-1c245bef1e37"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "3e3d05ec-d467-4db2-84dc-768c1bf97ff2"
+ "7a65d519-12d8-4131-8349-362e03665ab3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T065330Z:3e3d05ec-d467-4db2-84dc-768c1bf97ff2"
+ "WESTUS2:20180309T194937Z:7a65d519-12d8-4131-8349-362e03665ab3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.OpenIdConnectProviderTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.OpenIdConnectProviderTests/CreateListUpdateDelete.json
index fd066c8d6d9e4..bda01b1477340 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.OpenIdConnectProviderTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.OpenIdConnectProviderTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "831f090c-9d2a-4d0d-87ed-94d3ae97bd11"
+ "393ce852-e4fc-45e9-940a-0336d1d5288d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:58 GMT"
+ "Fri, 09 Mar 2018 19:43:18 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73bed865-decb-47be-8e23-072bac6156c2",
- "4f62dfee-d8b3-4f9f-ae87-1b00a90e25a8"
+ "e59df864-7900-4f39-9084-03eb3987f827",
+ "fdbdd49e-e9bc-4be3-b393-262deeb7fe37"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "d08fc83d-72dd-4b4c-9402-6b439e889115"
+ "01691724-db49-4cb3-bf79-994b988d62e6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070058Z:d08fc83d-72dd-4b4c-9402-6b439e889115"
+ "WESTUS2:20180309T194318Z:01691724-db49-4cb3-bf79-994b988d62e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c8fd317-063a-4f06-920c-f50094723db7"
+ "96fa49ff-0dd1-4bea-9759-984dc081181a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:58 GMT"
+ "Fri, 09 Mar 2018 19:43:18 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,47 +124,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fcfc4007-617c-4228-a389-f3eee079e224"
+ "2fba4e44-5c79-4b29-85df-65aafbf03d96"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "a9e8224a-a7a6-45e9-9b65-6d9707406014"
+ "dbd1dc69-fae2-4eb9-8038-685f3cd4bfb0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070058Z:a9e8224a-a7a6-45e9-9b65-6d9707406014"
+ "WESTUS2:20180309T194318Z:dbd1dc69-fae2-4eb9-8038-685f3cd4bfb0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDUzMjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc2Mzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName5587\",\r\n \"metadataEndpoint\": \"https://provider65.endpoint1957\",\r\n \"clientId\": \"clientId4681\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName1186\",\r\n \"metadataEndpoint\": \"https://provider4733.endpoint5840\",\r\n \"clientId\": \"clientId705\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "158"
+ "159"
],
"x-ms-client-request-id": [
- "829b781b-805d-4465-9199-86a297fca6cd"
+ "2c9efcb8-28a1-4c72-8f1e-a15cb2999c47"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId5328\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5587\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider65.endpoint1957\",\r\n \"clientId\": \"clientId4681\",\r\n \"clientSecret\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7638\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1186\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4733.endpoint5840\",\r\n \"clientId\": \"clientId705\",\r\n \"clientSecret\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "497"
+ "498"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:59 GMT"
+ "Fri, 09 Mar 2018 19:43:19 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANXo=\""
+ "\"AAAAAAAAOHU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,38 +194,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2fdb4b68-d995-4dbe-ae85-4b9c53211816"
+ "3188380a-3a30-4bdc-b086-8688def329ba"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "3cd8f9b6-848e-45be-a517-3653e46afbef"
+ "cf7326da-9ac1-4786-b932-a5c34215e0eb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070059Z:3cd8f9b6-848e-45be-a517-3653e46afbef"
+ "WESTUS2:20180309T194319Z:cf7326da-9ac1-4786-b932-a5c34215e0eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDUzMjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc2Mzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b659b75-1d46-4701-8153-ceb403a9890f"
+ "fc9a7142-b020-47b3-b1dd-930feea7ad8b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId5328\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5587\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider65.endpoint1957\",\r\n \"clientId\": \"clientId4681\",\r\n \"clientSecret\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7638\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1186\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4733.endpoint5840\",\r\n \"clientId\": \"clientId705\",\r\n \"clientSecret\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:59 GMT"
+ "Fri, 09 Mar 2018 19:43:19 GMT"
],
"Pragma": [
"no-cache"
@@ -240,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANXo=\""
+ "\"AAAAAAAAOHU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,35 +261,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "932a5ed2-da41-4085-9902-57eb58457fd7"
+ "88fad616-147f-4335-9dd4-46d8302c9c04"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "befe6690-e9cd-49d6-900c-b5aabeb511cb"
+ "b62e4b19-728c-4e24-8063-59d7864522cc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070059Z:befe6690-e9cd-49d6-900c-b5aabeb511cb"
+ "WESTUS2:20180309T194319Z:b62e4b19-728c-4e24-8063-59d7864522cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDUzMjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc2Mzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d6f3593-189e-4a4f-bc8d-42849ceadcb1"
+ "d29dfe59-a40c-448d-bf4b-a48651680166"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"OpenidConnectProvider not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -298,7 +310,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:00 GMT"
+ "Fri, 09 Mar 2018 19:43:20 GMT"
],
"Pragma": [
"no-cache"
@@ -310,47 +322,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6d0b999-4b1f-46b6-b437-a123b432be4b"
+ "108bb810-aa35-4c7c-806f-4ee4387e555d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14992"
],
"x-ms-correlation-request-id": [
- "27d8490b-3836-4241-bac4-6c3a80da3f9a"
+ "5ff7dd4a-9556-4803-a2d8-ef810075f80c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070100Z:27d8490b-3836-4241-bac4-6c3a80da3f9a"
+ "WESTUS2:20180309T194321Z:5ff7dd4a-9556-4803-a2d8-ef810075f80c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName5846\",\r\n \"description\": \"description3167\",\r\n \"metadataEndpoint\": \"https://provider4592.endpoint9592\",\r\n \"clientId\": \"clientId5442\",\r\n \"clientSecret\": \"clientSecret6099\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"openIdName5453\",\r\n \"description\": \"description739\",\r\n \"metadataEndpoint\": \"https://provider4056.endpoint3432\",\r\n \"clientId\": \"clientId8913\",\r\n \"clientSecret\": \"clientSecret3680\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "240"
+ "239"
],
"x-ms-client-request-id": [
- "6b852fc3-1744-4dd4-a65a-de69f6dd61b6"
+ "1f2cff7b-3333-4edf-ac7e-3d53ed597e8c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7805\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5846\",\r\n \"description\": \"description3167\",\r\n \"metadataEndpoint\": \"https://provider4592.endpoint9592\",\r\n \"clientId\": \"clientId5442\",\r\n \"clientSecret\": \"clientSecret6099\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8466\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5453\",\r\n \"description\": \"description739\",\r\n \"metadataEndpoint\": \"https://provider4056.endpoint3432\",\r\n \"clientId\": \"clientId8913\",\r\n \"clientSecret\": \"clientSecret3680\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "526"
+ "525"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -362,13 +377,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:59 GMT"
+ "Fri, 09 Mar 2018 19:43:19 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANXs=\""
+ "\"AAAAAAAAOHY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -377,38 +392,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f081439a-b14b-4216-a735-313b2e83359b"
+ "4b9d930f-a045-4b8b-97b3-40882d74e598"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "2fb05007-2220-439b-8f27-1590c2c3c9c4"
+ "851e0e6e-f124-41db-ab4c-d4a83327e7f9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070059Z:2fb05007-2220-439b-8f27-1590c2c3c9c4"
+ "WESTUS2:20180309T194320Z:851e0e6e-f124-41db-ab4c-d4a83327e7f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "166dfc8a-6cba-4f7e-8368-86ce807a8380"
+ "898b5a87-5a3d-4e41-99e2-11c8fb2c613a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7805\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5846\",\r\n \"description\": \"description3167\",\r\n \"metadataEndpoint\": \"https://provider4592.endpoint9592\",\r\n \"clientId\": \"clientId5442\",\r\n \"clientSecret\": \"clientSecret6099\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8466\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5453\",\r\n \"description\": \"description739\",\r\n \"metadataEndpoint\": \"https://provider4056.endpoint3432\",\r\n \"clientId\": \"clientId8913\",\r\n \"clientSecret\": \"clientSecret3680\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -420,7 +438,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:59 GMT"
+ "Fri, 09 Mar 2018 19:43:19 GMT"
],
"Pragma": [
"no-cache"
@@ -429,7 +447,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANXs=\""
+ "\"AAAAAAAAOHY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -441,38 +459,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f90f9f1a-75ee-4c74-9c38-e0ed54a21d97"
+ "fbd3a46e-abf0-4082-b16a-72f5fa036a12"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "c5c79046-d052-4e0a-9833-eea9eca42634"
+ "11716cd5-afee-4cf6-9d7c-3e7765c33c77"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070059Z:c5c79046-d052-4e0a-9833-eea9eca42634"
+ "WESTUS2:20180309T194320Z:11716cd5-afee-4cf6-9d7c-3e7765c33c77"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80782196-7a0c-452f-bee0-d375772eb9c8"
+ "6d965f07-18a2-41b6-9e53-f9f6eebd8622"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7805\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5846\",\r\n \"description\": \"description3167\",\r\n \"metadataEndpoint\": \"https://provider8541.endpoint6607\",\r\n \"clientId\": \"updatedClient1418\",\r\n \"clientSecret\": \"clientSecret6099\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8466\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5453\",\r\n \"description\": \"description739\",\r\n \"metadataEndpoint\": \"https://provider3299.endpoint1009\",\r\n \"clientId\": \"updatedClient7719\",\r\n \"clientSecret\": \"clientSecret3680\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -484,7 +505,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:01 GMT"
+ "Fri, 09 Mar 2018 19:43:21 GMT"
],
"Pragma": [
"no-cache"
@@ -493,7 +514,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANXw=\""
+ "\"AAAAAAAAOHc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -505,35 +526,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "16119aa8-0805-41cb-b802-fa01d6bc49bd"
+ "ddb53ab8-4aea-4dea-8a29-ceb0a1837ce1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14990"
],
"x-ms-correlation-request-id": [
- "3b80aced-9e33-45cd-a870-602e8bf488f6"
+ "4c6f7727-0d4a-4e48-b8b7-800938ef53df"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070101Z:3b80aced-9e33-45cd-a870-602e8bf488f6"
+ "WESTUS2:20180309T194321Z:4c6f7727-0d4a-4e48-b8b7-800938ef53df"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec1460fb-0e28-4707-9705-7d00f98e10f0"
+ "104dd509-7229-4344-af25-7155e2af0331"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"OpenidConnectProvider not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -551,7 +575,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:01 GMT"
+ "Fri, 09 Mar 2018 19:43:21 GMT"
],
"Pragma": [
"no-cache"
@@ -563,16 +587,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5dc96026-c5c5-4b7e-bfe7-fc4f3585ee37"
+ "2a585aff-3dea-4674-85d4-c9c77c2aa59d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14989"
],
"x-ms-correlation-request-id": [
- "092db4d8-c890-4edd-bbed-06f95e7fceb3"
+ "c4d401ec-31c4-4959-a48b-eaea53cd2a7f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070101Z:092db4d8-c890-4edd-bbed-06f95e7fceb3"
+ "WESTUS2:20180309T194322Z:c4d401ec-31c4-4959-a48b-eaea53cd2a7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -584,17 +611,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d6d770e-cfae-404d-880c-ae6f0855588f"
+ "f85bb814-6412-41c7-8aa3-dbc0d0a4431c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId5328\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5587\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider65.endpoint1957\",\r\n \"clientId\": \"clientId4681\",\r\n \"clientSecret\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7805\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5846\",\r\n \"description\": \"description3167\",\r\n \"metadataEndpoint\": \"https://provider4592.endpoint9592\",\r\n \"clientId\": \"clientId5442\",\r\n \"clientSecret\": \"clientSecret6099\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7638\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1186\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4733.endpoint5840\",\r\n \"clientId\": \"clientId705\",\r\n \"clientSecret\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId8466\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5453\",\r\n \"description\": \"description739\",\r\n \"metadataEndpoint\": \"https://provider4056.endpoint3432\",\r\n \"clientId\": \"clientId8913\",\r\n \"clientSecret\": \"clientSecret3680\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -606,7 +633,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:59 GMT"
+ "Fri, 09 Mar 2018 19:43:19 GMT"
],
"Pragma": [
"no-cache"
@@ -624,16 +651,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a356100e-f39e-46fa-8024-4b4498cac6a4"
+ "81d126f8-f22a-4eb1-a442-980706dda7b8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "d8f9c027-4bcb-4076-8881-05d0ccfa2f9d"
+ "7e266ce1-3366-4fbf-a10b-fa3f57eef45f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070059Z:d8f9c027-4bcb-4076-8881-05d0ccfa2f9d"
+ "WESTUS2:20180309T194320Z:7e266ce1-3366-4fbf-a10b-fa3f57eef45f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -645,17 +675,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76fb58ba-cf1d-429e-a600-c99a636f3d3a"
+ "7f11406f-947d-4ce5-8937-ff9bf45843ce"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId5328\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName5587\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider65.endpoint1957\",\r\n \"clientId\": \"clientId4681\",\r\n \"clientSecret\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638\",\r\n \"type\": \"Microsoft.ApiManagement/service/openidConnectProviders\",\r\n \"name\": \"openId7638\",\r\n \"properties\": {\r\n \"displayName\": \"openIdName1186\",\r\n \"description\": null,\r\n \"metadataEndpoint\": \"https://provider4733.endpoint5840\",\r\n \"clientId\": \"clientId705\",\r\n \"clientSecret\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -667,7 +697,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:00:59 GMT"
+ "Fri, 09 Mar 2018 19:43:19 GMT"
],
"Pragma": [
"no-cache"
@@ -685,35 +715,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b894a3c7-66cd-457b-abd2-944b774fd9cd"
+ "222c856e-a33f-43de-aeb6-06744f4e5552"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "600b43b5-9617-439b-b8d9-f70c3bf67bbd"
+ "4248681d-eaed-4d0a-ad0e-5465a6ab978f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070100Z:600b43b5-9617-439b-b8d9-f70c3bf67bbd"
+ "WESTUS2:20180309T194320Z:4248681d-eaed-4d0a-ad0e-5465a6ab978f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDUzMjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc2Mzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "415f3a6b-71b3-4634-ad44-612818b6c976"
+ "bd07af68-0af8-4801-b2fe-8ab68ff8073d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -728,13 +761,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:00 GMT"
+ "Fri, 09 Mar 2018 19:43:20 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANXo=\""
+ "\"AAAAAAAAOHU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -743,38 +776,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a011bca1-0eec-4739-b98f-be1fb4f1e213"
+ "b7cb801a-c9ab-4f5f-bc47-e210ee5c2d71"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "82984da8-f800-4cc9-85a5-d1d5ec1a5892"
+ "16818762-a63a-4085-af80-7b04223e428c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070100Z:82984da8-f800-4cc9-85a5-d1d5ec1a5892"
+ "WESTUS2:20180309T194320Z:16818762-a63a-4085-af80-7b04223e428c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDUzMjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc2Mzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7222a71d-9fac-4a29-a846-ad17ca03eabb"
+ "e7123248-0786-414b-8637-c3f9c6c0655b"
],
"If-Match": [
- "\"AAAAAAAANXo=\""
+ "\"AAAAAAAAOHU=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -789,7 +825,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:00 GMT"
+ "Fri, 09 Mar 2018 19:43:20 GMT"
],
"Pragma": [
"no-cache"
@@ -801,28 +837,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dd2b7abf-f489-49a6-a9b6-4764093ebcba"
+ "67b3238d-3495-4f5d-a54d-b91d50bf1815"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "b2215c11-db0b-43b5-8346-eefe2ed6165c"
+ "3cc52028-6e35-498a-99cb-52988fa1d109"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070100Z:b2215c11-db0b-43b5-8346-eefe2ed6165c"
+ "WESTUS2:20180309T194321Z:3cc52028-6e35-498a-99cb-52988fa1d109"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId5328?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDUzMjg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7638?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc2Mzg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "622e45b9-a89a-4e6a-961e-75c5c6f73988"
+ "d8e37eb4-91ef-4ed1-a44d-5b386cc75ba8"
],
"If-Match": [
"*"
@@ -832,7 +871,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -844,7 +883,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:01 GMT"
+ "Fri, 09 Mar 2018 19:43:21 GMT"
],
"Pragma": [
"no-cache"
@@ -856,35 +895,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fd7d9ebc-b449-4fc6-8878-bf7a84319dd4"
+ "4c24286c-68c1-441f-958b-cc22f7adc0da"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "51fcafeb-2118-4c73-8bae-0176523f4e72"
+ "1bc05e9c-f9cb-415f-ad33-9a3243ae0fc6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070101Z:51fcafeb-2118-4c73-8bae-0176523f4e72"
+ "WESTUS2:20180309T194322Z:1bc05e9c-f9cb-415f-ad33-9a3243ae0fc6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99392705-e1b9-4e9c-bdad-5d1ec0fc2e8e"
+ "95bd5350-7700-44fd-a420-6210720f12be"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -899,13 +941,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:00 GMT"
+ "Fri, 09 Mar 2018 19:43:20 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANXs=\""
+ "\"AAAAAAAAOHY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -914,25 +956,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "803eccd5-5c72-4fed-a034-e05253f524e8"
+ "fbdd8b43-a7a0-4c49-adcd-0c7ff35d8063"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14991"
],
"x-ms-correlation-request-id": [
- "a1a8edee-73b2-416b-b7e1-274dad39f0e3"
+ "b6347825-2854-48aa-8f9c-a86714b610f6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070100Z:a1a8edee-73b2-416b-b7e1-274dad39f0e3"
+ "WESTUS2:20180309T194321Z:b6347825-2854-48aa-8f9c-a86714b610f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider8541.endpoint6607\",\r\n \"clientId\": \"updatedClient1418\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"metadataEndpoint\": \"https://provider3299.endpoint1009\",\r\n \"clientId\": \"updatedClient7719\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -941,17 +986,17 @@
"127"
],
"x-ms-client-request-id": [
- "d7e15c29-38b8-45cf-a527-87f1c06a23ce"
+ "fbb9104f-8f34-43ea-aee7-1937bdb43830"
],
"If-Match": [
- "\"AAAAAAAANXs=\""
+ "\"AAAAAAAAOHY=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -963,7 +1008,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:01 GMT"
+ "Fri, 09 Mar 2018 19:43:21 GMT"
],
"Pragma": [
"no-cache"
@@ -975,38 +1020,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ddcc5fd-c832-4f80-acc2-1491e395a72d"
+ "fee54538-6985-4ec6-9669-924cfe711879"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "eb3f508b-2d92-471e-ab8f-18f03c3d6f9b"
+ "d1e67a81-72d1-4664-9ed1-cb42bda16afc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070101Z:eb3f508b-2d92-471e-ab8f-18f03c3d6f9b"
+ "WESTUS2:20180309T194321Z:d1e67a81-72d1-4664-9ed1-cb42bda16afc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "122120dd-5813-4620-a04f-8cff7dadcab8"
+ "561bb971-4fe5-4251-ad15-afd0ffcac39e"
],
"If-Match": [
- "\"AAAAAAAANXw=\""
+ "\"AAAAAAAAOHc=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1021,7 +1069,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:01 GMT"
+ "Fri, 09 Mar 2018 19:43:21 GMT"
],
"Pragma": [
"no-cache"
@@ -1033,28 +1081,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69c81979-dcd3-4804-ba23-5009b85d5fe9"
+ "d8c6a9b1-0c1a-440b-89e7-ab9b8201bacd"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "6c2f35f3-638b-4c46-b1a6-2cfd62678659"
+ "f19e107b-8408-436d-987c-b201281f4cb2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070101Z:6c2f35f3-638b-4c46-b1a6-2cfd62678659"
+ "WESTUS2:20180309T194321Z:f19e107b-8408-436d-987c-b201281f4cb2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId7805?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDc4MDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/openidConnectProviders/openId8466?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9vcGVuaWRDb25uZWN0UHJvdmlkZXJzL29wZW5JZDg0NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47a79f36-2e8a-4a68-a06a-0487f86a3049"
+ "7986b634-a1e4-423f-b0d1-50baad10c6de"
],
"If-Match": [
"*"
@@ -1064,7 +1115,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1076,7 +1127,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:01:01 GMT"
+ "Fri, 09 Mar 2018 19:43:21 GMT"
],
"Pragma": [
"no-cache"
@@ -1088,16 +1139,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "65021d5d-05f9-478c-9389-77c3d1337e6f"
+ "bd6b142b-7694-433c-a699-95c78ce18e2d"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1192"
],
"x-ms-correlation-request-id": [
- "61a4ce22-9c17-4a24-839b-4be3c3813794"
+ "ccdeedbd-e1e9-4fec-a8c4-39c176a316fb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070102Z:61a4ce22-9c17-4a24-839b-4be3c3813794"
+ "WESTUS2:20180309T194322Z:ccdeedbd-e1e9-4fec-a8c4-39c176a316fb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -1105,23 +1159,23 @@
],
"Names": {
"CreateListUpdateDelete": [
- "openId5328",
- "openId7805",
- "openIdName5587",
- "clientId4681",
- "openIdName5846",
- "clientId5442",
- "clientSecret6099",
- "description3167",
- "updatedClient1418"
+ "openId7638",
+ "openId8466",
+ "openIdName1186",
+ "clientId705",
+ "openIdName5453",
+ "clientId8913",
+ "clientSecret3680",
+ "description739",
+ "updatedClient7719"
],
"GetHttpsUrl": [
- "provider65",
- "endpoint1957",
- "provider4592",
- "endpoint9592",
- "provider8541",
- "endpoint6607"
+ "provider4733",
+ "endpoint5840",
+ "provider4056",
+ "endpoint3432",
+ "provider3299",
+ "endpoint1009"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyTests/CreateListUpdateDelete.json
index 052eb5f5f9a91..bbe804b32b533 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyTests/CreateListUpdateDelete.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "adc0894b-20da-4293-a60d-6e262b10be5e"
+ "f75f3454-4926-49bb-951c-09368c4f2ab7"
],
"accept-language": [
"en-US"
@@ -23,7 +23,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:25 GMT"
+ "Fri, 09 Mar 2018 19:46:30 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e014a232-0963-413a-b8b6-16c956fe52b6",
- "3b212492-67e5-4ae7-b58b-2bbc08e45493"
+ "d8ccf4d0-3413-4ef2-9273-fbfc9cd4cf78",
+ "ae85f3bb-7357-4f0c-817d-4e03cb10e540"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "55715192-794c-4e9f-a775-9525f5bd129e"
+ "e8e3df43-4100-423e-ac28-1bef60f61485"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185126Z:55715192-794c-4e9f-a775-9525f5bd129e"
+ "WESTUS2:20180309T194631Z:e8e3df43-4100-423e-ac28-1bef60f61485"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fb7a1ac-c8c9-4390-9af7-fda02c91bc0e"
+ "21b3dae5-9ec7-4ff3-abe5-39ba1a895842"
],
"accept-language": [
"en-US"
@@ -91,7 +91,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:25 GMT"
+ "Fri, 09 Mar 2018 19:46:31 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "247bbfc3-6818-4fa0-adc9-7692bdf682df"
+ "519f268f-bb92-4f92-8e52-425825228ba0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "f06f0c39-e410-4c22-9ad7-a34ae569cf64"
+ "5796e325-ab67-48a3-b64e-ebbd17c39234"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185126Z:f06f0c39-e410-4c22-9ad7-a34ae569cf64"
+ "WESTUS2:20180309T194631Z:5796e325-ab67-48a3-b64e-ebbd17c39234"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6552d099-b755-45f7-a27f-119107de9166"
+ "c0cf572c-e888-413b-9aa4-6cf0a228b628"
],
"accept-language": [
"en-US"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:25 GMT"
+ "Fri, 09 Mar 2018 19:46:31 GMT"
],
"Pragma": [
"no-cache"
@@ -179,7 +179,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM9Y=\""
+ "\"AAAAAAAAN00=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -191,16 +191,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cca9ae5d-4dc3-4562-ba33-cef19990c09b"
+ "4890a88d-c2f0-4681-ac60-2ecd49993ce7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "1b7b9f0c-759f-4923-bf41-51696a273a83"
+ "47924ee5-7d29-4fd4-8408-b0cf8dfce360"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185126Z:1b7b9f0c-759f-4923-bf41-51696a273a83"
+ "WESTUS2:20180309T194631Z:47924ee5-7d29-4fd4-8408-b0cf8dfce360"
],
"X-Content-Type-Options": [
"nosniff"
@@ -215,7 +215,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0fa03a28-cd42-4760-93b6-afa512049321"
+ "2769f7fb-f072-45ae-89ab-8bc46eaefd44"
],
"accept-language": [
"en-US"
@@ -237,7 +237,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:26 GMT"
+ "Fri, 09 Mar 2018 19:46:32 GMT"
],
"Pragma": [
"no-cache"
@@ -246,7 +246,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM9Y=\""
+ "\"AAAAAAAAN00=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -258,16 +258,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "46e06b23-63b4-4286-820e-a09ec8034f5a"
+ "d8df2f8a-59d8-45be-abcf-7241042b2758"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "4d7be0a2-44e3-4735-ac78-a29f8a2948da"
+ "16df76e0-0ec3-4b29-8ef2-9efca5a0b27b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185127Z:4d7be0a2-44e3-4735-ac78-a29f8a2948da"
+ "WESTUS2:20180309T194633Z:16df76e0-0ec3-4b29-8ef2-9efca5a0b27b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -282,7 +282,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc0ae538-8b95-405b-8b61-42d9d4c70cf9"
+ "8b043827-a489-47fe-89ba-a8c1597d445e"
],
"accept-language": [
"en-US"
@@ -307,7 +307,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:27 GMT"
+ "Fri, 09 Mar 2018 19:46:32 GMT"
],
"Pragma": [
"no-cache"
@@ -319,16 +319,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7864e8bb-dee0-47a4-b0d7-fdc81f98909c"
+ "01b9fa93-46ea-421c-9669-fd54802c1fd5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "041414fc-ba81-4c18-a203-17afe08691f1"
+ "c900be78-4370-4fec-93fd-2b51ad10d959"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185128Z:041414fc-ba81-4c18-a203-17afe08691f1"
+ "WESTUS2:20180309T194633Z:c900be78-4370-4fec-93fd-2b51ad10d959"
],
"X-Content-Type-Options": [
"nosniff"
@@ -349,7 +349,7 @@
"1064"
],
"x-ms-client-request-id": [
- "f364d95a-a1ba-47f3-a659-bcdb951d3f3d"
+ "51707170-9526-4eba-8a70-187ac69aa45c"
],
"accept-language": [
"en-US"
@@ -371,7 +371,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:26 GMT"
+ "Fri, 09 Mar 2018 19:46:32 GMT"
],
"Pragma": [
"no-cache"
@@ -380,7 +380,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM9Y=\""
+ "\"AAAAAAAAN00=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1dbc3f89-e2d6-44ba-8610-9d4dfbaa5bad"
+ "bc9402a5-0014-4619-93b4-bd6fd39744df"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "fe32b7f8-8704-4030-b8ba-e2636887ea44"
+ "b483db0e-f298-46c1-ae18-1511a7110e21"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185127Z:fe32b7f8-8704-4030-b8ba-e2636887ea44"
+ "WESTUS2:20180309T194632Z:b483db0e-f298-46c1-ae18-1511a7110e21"
],
"X-Content-Type-Options": [
"nosniff"
@@ -422,7 +422,7 @@
"1064"
],
"x-ms-client-request-id": [
- "5d8795e6-ad4d-4291-852b-49864b97a71e"
+ "3fe76078-2e05-4d50-aa7a-c64b3f9b300c"
],
"accept-language": [
"en-US"
@@ -447,13 +447,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:27 GMT"
+ "Fri, 09 Mar 2018 19:46:33 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN00=\""
+ "\"AAAAAAAAOIM=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -462,16 +462,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a266710-08e4-49cd-aefd-59b811269db1"
+ "1b464ee9-b727-4d86-9a5c-1f3e7fde16f3"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "301481f8-eaa6-48d5-a94f-aab354fbdc3e"
+ "7d719069-6340-4494-879e-199f83c10f01"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185128Z:301481f8-eaa6-48d5-a94f-aab354fbdc3e"
+ "WESTUS2:20180309T194633Z:7d719069-6340-4494-879e-199f83c10f01"
],
"X-Content-Type-Options": [
"nosniff"
@@ -486,7 +486,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c2e6062-69e1-4ba0-b777-95790d569fe8"
+ "5689eaae-5238-4fb8-97aa-dc0b34cafdff"
],
"accept-language": [
"en-US"
@@ -508,13 +508,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:26 GMT"
+ "Fri, 09 Mar 2018 19:46:32 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM9Y=\""
+ "\"AAAAAAAAN00=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -523,16 +523,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6e6a93ac-dd4d-4a68-b1bb-70d7e8fdecc5"
+ "392406a9-b64c-4601-9c6c-f6de7a9ee168"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "6e0229f6-c69f-43bd-813a-5ee0cfffd4e3"
+ "d0b521ed-4032-49ab-8307-d333aee2d414"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185127Z:6e0229f6-c69f-43bd-813a-5ee0cfffd4e3"
+ "WESTUS2:20180309T194633Z:d0b521ed-4032-49ab-8307-d333aee2d414"
],
"X-Content-Type-Options": [
"nosniff"
@@ -547,10 +547,10 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6aa522be-b8d1-474a-a737-050c0dbbe952"
+ "f3b0701f-b53f-4437-9677-f276a8aab468"
],
"If-Match": [
- "\"AAAAAAAAM9Y=\""
+ "\"AAAAAAAAN00=\""
],
"accept-language": [
"en-US"
@@ -572,7 +572,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:27 GMT"
+ "Fri, 09 Mar 2018 19:46:32 GMT"
],
"Pragma": [
"no-cache"
@@ -584,16 +584,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70688773-4179-415b-a7f2-f029ef898047"
+ "c542d8df-a4d3-4a09-bedc-3370d89f50b3"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "19fee829-987e-4813-8971-2abf72f0d17b"
+ "a37a51bc-03d0-43e0-af82-f79695aa8063"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185127Z:19fee829-987e-4813-8971-2abf72f0d17b"
+ "WESTUS2:20180309T194633Z:a37a51bc-03d0-43e0-af82-f79695aa8063"
],
"X-Content-Type-Options": [
"nosniff"
@@ -608,7 +608,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4140ad95-4cf7-45a4-b5da-d914ad45fe92"
+ "19c8c8e1-fe85-4184-b711-9c2a4cd4106f"
],
"accept-language": [
"en-US"
@@ -630,7 +630,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:27 GMT"
+ "Fri, 09 Mar 2018 19:46:33 GMT"
],
"Pragma": [
"no-cache"
@@ -648,16 +648,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "676ac9b0-553d-441e-9809-9ce1933a5885"
+ "3f1784e7-8647-4bac-9809-c17e46223d7d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "7a8476e1-f3bb-4f8e-97dc-ca6a21d8d4e0"
+ "c30fff57-8865-4bc3-9fa6-b6c54445b3c1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185128Z:7a8476e1-f3bb-4f8e-97dc-ca6a21d8d4e0"
+ "WESTUS2:20180309T194634Z:c30fff57-8865-4bc3-9fa6-b6c54445b3c1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -672,7 +672,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e78343b6-f465-4e1b-b1b6-2f4bec301d94"
+ "b9ed492b-0547-491f-8d29-db1033b98dbc"
],
"accept-language": [
"en-US"
@@ -694,7 +694,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:27 GMT"
+ "Fri, 09 Mar 2018 19:46:33 GMT"
],
"Pragma": [
"no-cache"
@@ -706,16 +706,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "68a4238a-bab1-4228-b353-d2704e174e76"
+ "434e702b-d55a-4e21-bcec-d893ea6529b9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14992"
],
"x-ms-correlation-request-id": [
- "1cf75323-bb70-476e-8c68-0d165df48308"
+ "a754f688-c613-4761-a429-0e19e63faf01"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185128Z:1cf75323-bb70-476e-8c68-0d165df48308"
+ "WESTUS2:20180309T194634Z:a754f688-c613-4761-a429-0e19e63faf01"
],
"X-Content-Type-Options": [
"nosniff"
@@ -736,7 +736,7 @@
"336"
],
"x-ms-client-request-id": [
- "f3c35d90-d18c-49de-abcb-8f983410e499"
+ "183e84cb-4817-4466-a54f-82a30b84478b"
],
"If-Match": [
"*"
@@ -764,13 +764,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:28 GMT"
+ "Fri, 09 Mar 2018 19:46:33 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN04=\""
+ "\"AAAAAAAAOIQ=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -779,16 +779,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7d4804f5-8737-441b-8743-1fab1c0810d7"
+ "84e8de28-b8f3-4c6a-850a-df023b04ce4a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "806d5565-82d6-46a2-88bf-51c621fad39c"
+ "0ef12f53-7031-42d4-bebc-f171138c01fb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185129Z:806d5565-82d6-46a2-88bf-51c621fad39c"
+ "WESTUS2:20180309T194634Z:0ef12f53-7031-42d4-bebc-f171138c01fb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -803,7 +803,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66a4cd4a-e994-4384-b103-bc1da3771603"
+ "9514d4e5-8fcd-4728-9ad7-a7184928c6bc"
],
"accept-language": [
"en-US"
@@ -825,7 +825,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:28 GMT"
+ "Fri, 09 Mar 2018 19:46:34 GMT"
],
"Pragma": [
"no-cache"
@@ -834,7 +834,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN04=\""
+ "\"AAAAAAAAOIQ=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -846,16 +846,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86805798-1d85-46a4-ab70-c63a5fde6b53"
+ "92ccc4d2-f3f6-4371-99a1-209cc8e966d2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14991"
],
"x-ms-correlation-request-id": [
- "32cdc105-2318-48c1-b61d-47fe2f72ffad"
+ "ba6da885-578b-48a4-9c60-45faf033c652"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185129Z:32cdc105-2318-48c1-b61d-47fe2f72ffad"
+ "WESTUS2:20180309T194634Z:ba6da885-578b-48a4-9c60-45faf033c652"
],
"X-Content-Type-Options": [
"nosniff"
@@ -870,7 +870,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b0df7ba-1a15-4bd4-acac-40e1a42d325a"
+ "b2a6e84f-33e4-4300-acf0-0dc160ec9b51"
],
"accept-language": [
"en-US"
@@ -895,7 +895,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:28 GMT"
+ "Fri, 09 Mar 2018 19:46:34 GMT"
],
"Pragma": [
"no-cache"
@@ -907,16 +907,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06de700e-ceab-4740-9bb5-646e595c127a"
+ "b135d51e-cb4a-4d0f-9561-0b2d880d1110"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14989"
],
"x-ms-correlation-request-id": [
- "00964571-5c7d-4a1e-a4ac-5e21b02dd077"
+ "9e483195-6655-4b79-a47b-7029db96c43b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185129Z:00964571-5c7d-4a1e-a4ac-5e21b02dd077"
+ "WESTUS2:20180309T194635Z:9e483195-6655-4b79-a47b-7029db96c43b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -931,7 +931,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d79c1324-b5f6-4c17-a273-40a44bc485d1"
+ "cdb77475-66fe-4b69-9de8-2590914e8e74"
],
"accept-language": [
"en-US"
@@ -953,13 +953,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:28 GMT"
+ "Fri, 09 Mar 2018 19:46:34 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN04=\""
+ "\"AAAAAAAAOIQ=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -968,16 +968,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e79130d-a433-4ace-b225-e127980323dd"
+ "5e0118b6-1afc-4192-9161-1665794571c5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14990"
],
"x-ms-correlation-request-id": [
- "8ff7ba4f-9854-46ee-8fa9-14247889336c"
+ "83fc0ab4-8e0f-481c-bfcf-de51590a37dc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185129Z:8ff7ba4f-9854-46ee-8fa9-14247889336c"
+ "WESTUS2:20180309T194634Z:83fc0ab4-8e0f-481c-bfcf-de51590a37dc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -992,10 +992,10 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "200d8712-a674-431c-a0fc-c75cde5c5b63"
+ "dab460c2-5d4a-44ba-bcb3-df4b6080c934"
],
"If-Match": [
- "\"AAAAAAAAN04=\""
+ "\"AAAAAAAAOIQ=\""
],
"accept-language": [
"en-US"
@@ -1017,7 +1017,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:28 GMT"
+ "Fri, 09 Mar 2018 19:46:34 GMT"
],
"Pragma": [
"no-cache"
@@ -1029,16 +1029,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "12192d10-ec73-4bdb-8cb1-e3243cac8c1d"
+ "b7b59137-7d32-4f23-8969-c4050952e1ba"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "d7c450e5-b2bd-4beb-b00c-825e7589588b"
+ "4506573d-69f0-4630-b613-68272cb24b0c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185129Z:d7c450e5-b2bd-4beb-b00c-825e7589588b"
+ "WESTUS2:20180309T194635Z:4506573d-69f0-4630-b613-68272cb24b0c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1053,7 +1053,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "730b1d62-2658-454c-99b4-9adc327ba66e"
+ "5696ab4d-1583-46e7-af46-ac10abb33fb0"
],
"accept-language": [
"en-US"
@@ -1075,7 +1075,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:30 GMT"
+ "Fri, 09 Mar 2018 19:46:34 GMT"
],
"Pragma": [
"no-cache"
@@ -1093,16 +1093,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6c77abb-5997-4027-860c-eecadb039713"
+ "95e6b620-69e1-4796-8f0b-261a39b80d96"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14988"
],
"x-ms-correlation-request-id": [
- "4af8aebb-09db-483c-a670-c46705fd8329"
+ "fadcfffb-a308-4288-9c77-0ef295412b87"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185130Z:4af8aebb-09db-483c-a670-c46705fd8329"
+ "WESTUS2:20180309T194635Z:fadcfffb-a308-4288-9c77-0ef295412b87"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1117,7 +1117,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4bcd434-2b91-480d-87d9-74adfec38cca"
+ "4f46c2a7-8328-48e6-b64b-0e07e70cf562"
],
"accept-language": [
"en-US"
@@ -1142,7 +1142,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:30 GMT"
+ "Fri, 09 Mar 2018 19:46:35 GMT"
],
"Pragma": [
"no-cache"
@@ -1154,16 +1154,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d0a94275-1c27-4d2a-b8b3-59cf1e4bf389"
+ "bc13d19d-90b8-460e-a168-fd716a54113e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14987"
],
"x-ms-correlation-request-id": [
- "001d4fe3-3e88-4628-83e8-eae1864bff3b"
+ "7b1fe070-bc99-4cf9-a1a7-8d59ae1942dd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185130Z:001d4fe3-3e88-4628-83e8-eae1864bff3b"
+ "WESTUS2:20180309T194635Z:7b1fe070-bc99-4cf9-a1a7-8d59ae1942dd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1178,7 +1178,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67973376-b1dd-4374-89ef-814da9557ee2"
+ "089ffb9c-c099-41bf-9947-20b3d2d3c375"
],
"accept-language": [
"en-US"
@@ -1200,7 +1200,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:32 GMT"
+ "Fri, 09 Mar 2018 19:46:35 GMT"
],
"Pragma": [
"no-cache"
@@ -1209,7 +1209,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN1E=\""
+ "\"AAAAAAAAOIc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1221,16 +1221,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "902d7230-7b88-4098-9361-f1b45859719e"
+ "0ddac96d-0e57-47f0-b02c-a781184acee9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14986"
],
"x-ms-correlation-request-id": [
- "67fe7d7f-5157-46d5-b62f-04bcc80be21d"
+ "5de816c2-3a47-4bb2-88f1-6c7a33b53ec2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185132Z:67fe7d7f-5157-46d5-b62f-04bcc80be21d"
+ "WESTUS2:20180309T194636Z:5de816c2-3a47-4bb2-88f1-6c7a33b53ec2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1245,7 +1245,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a5e5d6dd-4e4d-4927-a05d-8545d2776fe4"
+ "5870e74f-e2e4-495e-8932-6f5d21238234"
],
"accept-language": [
"en-US"
@@ -1270,7 +1270,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:33 GMT"
+ "Fri, 09 Mar 2018 19:46:36 GMT"
],
"Pragma": [
"no-cache"
@@ -1282,16 +1282,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8870a1f3-ee34-4930-94d3-d9f2774f0f12"
+ "9dbe15c9-ecd4-4a28-899d-a29478fcd880"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14984"
],
"x-ms-correlation-request-id": [
- "f0bcc630-0b66-4e85-acb7-79b9db9d90ec"
+ "7dcb448a-0ea0-4572-bb9f-56fcaaab9610"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185133Z:f0bcc630-0b66-4e85-acb7-79b9db9d90ec"
+ "WESTUS2:20180309T194637Z:7dcb448a-0ea0-4572-bb9f-56fcaaab9610"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1312,7 +1312,7 @@
"267"
],
"x-ms-client-request-id": [
- "1a43188f-e62c-4282-9c0f-b6c4078f7c9b"
+ "1381c62d-518d-4bd0-8611-074ed9d1f2b5"
],
"If-Match": [
"*"
@@ -1340,13 +1340,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:31 GMT"
+ "Fri, 09 Mar 2018 19:46:35 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN1E=\""
+ "\"AAAAAAAAOIc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1355,16 +1355,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3eaa2fe3-f131-43c1-9899-3626a5542382"
+ "ed6c0e58-666f-469f-97c3-389177b71548"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "6a127d9c-23a5-4d47-86ba-6ed0f023c4f2"
+ "d290dae5-bd16-46eb-b05c-a27d997c0f5b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185131Z:6a127d9c-23a5-4d47-86ba-6ed0f023c4f2"
+ "WESTUS2:20180309T194636Z:d290dae5-bd16-46eb-b05c-a27d997c0f5b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1379,7 +1379,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44ca66b7-a4ac-4856-a541-da3d4c2c0f00"
+ "7de98174-763d-40f7-9f63-8ee5888c5a44"
],
"accept-language": [
"en-US"
@@ -1401,13 +1401,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:32 GMT"
+ "Fri, 09 Mar 2018 19:46:36 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN1E=\""
+ "\"AAAAAAAAOIc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1416,16 +1416,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "17217d1c-9f9b-4dcc-9554-97a30cd18710"
+ "2094a05e-dacf-4c15-a650-0e942e46aebc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14985"
],
"x-ms-correlation-request-id": [
- "a82eb1e1-dd70-4654-a629-e3cf779f4ce3"
+ "34397d7b-1d6b-4cea-9f1c-c541d68af343"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185132Z:a82eb1e1-dd70-4654-a629-e3cf779f4ce3"
+ "WESTUS2:20180309T194636Z:34397d7b-1d6b-4cea-9f1c-c541d68af343"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1440,10 +1440,10 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1f9dbe2-7270-45cc-bcc6-d286e82c1147"
+ "29fdee69-e13c-4251-9dac-c7faea5c5474"
],
"If-Match": [
- "\"AAAAAAAAN1E=\""
+ "\"AAAAAAAAOIc=\""
],
"accept-language": [
"en-US"
@@ -1465,7 +1465,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:32 GMT"
+ "Fri, 09 Mar 2018 19:46:36 GMT"
],
"Pragma": [
"no-cache"
@@ -1477,16 +1477,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2d59dff3-0002-4ee2-b32d-0b57ce463251"
+ "1b5f4f6a-7b16-4f1e-b674-5f85811d3610"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1192"
],
"x-ms-correlation-request-id": [
- "645bec39-66a1-4d35-ba6a-6ab5ce009d2c"
+ "7f0623b9-04be-4247-81ff-e66301ba1c84"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185132Z:645bec39-66a1-4d35-ba6a-6ab5ce009d2c"
+ "WESTUS2:20180309T194637Z:7f0623b9-04be-4247-81ff-e66301ba1c84"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1501,7 +1501,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2c070b9-85ee-4ece-8432-bdd0c5f04fc9"
+ "39fa0eac-2298-4384-b089-13ed908fc03a"
],
"accept-language": [
"en-US"
@@ -1523,7 +1523,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:33 GMT"
+ "Fri, 09 Mar 2018 19:46:36 GMT"
],
"Pragma": [
"no-cache"
@@ -1541,16 +1541,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "67fa4abd-ce60-44da-b0e3-1f4f541785e7"
+ "cfa7b232-862a-409e-abda-5dbea3eb6acf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14983"
],
"x-ms-correlation-request-id": [
- "fa02feaa-7d2c-4f24-8e37-2e9b76f479a6"
+ "d9714470-18cd-4e9c-ba7a-bca4ca53b3d4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185133Z:fa02feaa-7d2c-4f24-8e37-2e9b76f479a6"
+ "WESTUS2:20180309T194637Z:d9714470-18cd-4e9c-ba7a-bca4ca53b3d4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1565,7 +1565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55e12507-5c4a-49cb-ab41-9d6f8012020a"
+ "edb0a6da-b9d9-401f-88c3-e30654392ec8"
],
"accept-language": [
"en-US"
@@ -1590,7 +1590,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:33 GMT"
+ "Fri, 09 Mar 2018 19:46:37 GMT"
],
"Pragma": [
"no-cache"
@@ -1602,16 +1602,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c0d666a-73bf-428c-8817-a0e20aa88345"
+ "7f07962e-fdf7-4c99-9748-ba120d591571"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14982"
],
"x-ms-correlation-request-id": [
- "dd620154-621f-449e-a919-c8bb2f56d343"
+ "7f8a2887-4882-43e0-bd8d-2bc1715136f5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185133Z:dd620154-621f-449e-a919-c8bb2f56d343"
+ "WESTUS2:20180309T194638Z:7f8a2887-4882-43e0-bd8d-2bc1715136f5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1626,7 +1626,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5b89ed86-d15d-444b-a660-000712e2b97a"
+ "4af46315-88d5-4c2a-aeab-62bfd050efd4"
],
"accept-language": [
"en-US"
@@ -1648,7 +1648,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:34 GMT"
+ "Fri, 09 Mar 2018 19:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -1657,7 +1657,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN1Q=\""
+ "\"AAAAAAAAOIo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1669,16 +1669,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0b3b92a2-2113-4248-8241-bbe64472fdb9"
+ "55745139-0be8-4735-9611-41aaff6b1325"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14981"
],
"x-ms-correlation-request-id": [
- "25894245-844b-4f18-8b0a-14def0d3f7ad"
+ "ef40bbc0-fcaf-41cb-a9be-ee9dcc44d82a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185134Z:25894245-844b-4f18-8b0a-14def0d3f7ad"
+ "WESTUS2:20180309T194639Z:ef40bbc0-fcaf-41cb-a9be-ee9dcc44d82a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1693,7 +1693,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b90fe765-2724-4369-b42b-92669fca8275"
+ "5f9a9258-fddf-42b0-afb9-d742a101eb93"
],
"accept-language": [
"en-US"
@@ -1718,7 +1718,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:35 GMT"
+ "Fri, 09 Mar 2018 19:46:39 GMT"
],
"Pragma": [
"no-cache"
@@ -1730,16 +1730,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0d6107c3-5196-49d7-8b41-ef766b81f095"
+ "c73e4e69-a791-4bf7-a07c-aff69e4dfb5e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14979"
],
"x-ms-correlation-request-id": [
- "92657243-b2fa-4ec5-a352-d7b8b53343e7"
+ "6d73dd6f-bec7-4708-89b0-458cc4a6a86a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185135Z:92657243-b2fa-4ec5-a352-d7b8b53343e7"
+ "WESTUS2:20180309T194639Z:6d73dd6f-bec7-4708-89b0-458cc4a6a86a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1760,7 +1760,7 @@
"334"
],
"x-ms-client-request-id": [
- "db5979ea-c749-41a0-8929-94492fc9dafa"
+ "f6b44637-a031-4aef-bdfc-f53e454207fe"
],
"accept-language": [
"en-US"
@@ -1785,13 +1785,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:34 GMT"
+ "Fri, 09 Mar 2018 19:46:38 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN1Q=\""
+ "\"AAAAAAAAOIo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1800,16 +1800,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5bb82845-5b36-45d0-9b84-41608ebbaac3"
+ "d8188eae-bf01-45c3-8187-f6da0a2c200c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1191"
],
"x-ms-correlation-request-id": [
- "78cea464-8b06-409a-b175-a37582ce5b50"
+ "50140412-ebe9-4fa5-a267-fe020665e5c6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185134Z:78cea464-8b06-409a-b175-a37582ce5b50"
+ "WESTUS2:20180309T194639Z:50140412-ebe9-4fa5-a267-fe020665e5c6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1824,7 +1824,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67afc55f-c7cb-488f-a7d8-c6d22b103337"
+ "5d0972b4-cafc-408a-ad3b-90173e42aab6"
],
"accept-language": [
"en-US"
@@ -1846,13 +1846,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:34 GMT"
+ "Fri, 09 Mar 2018 19:46:38 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN1Q=\""
+ "\"AAAAAAAAOIo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1861,16 +1861,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a72575cb-fbbe-4333-9315-1f034020471c"
+ "04f52c3b-8bf1-4c32-87c5-5ce8246cd281"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14980"
],
"x-ms-correlation-request-id": [
- "2d4257ca-d430-4050-80b9-000c73d53b4a"
+ "42d9798a-e967-4bf3-972a-11984c439ffe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185134Z:2d4257ca-d430-4050-80b9-000c73d53b4a"
+ "WESTUS2:20180309T194639Z:42d9798a-e967-4bf3-972a-11984c439ffe"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1885,10 +1885,10 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "229654fe-633d-4a94-af6c-22c107680b6e"
+ "c8863565-0f06-40e5-932b-6a5576439fa5"
],
"If-Match": [
- "\"AAAAAAAAN1Q=\""
+ "\"AAAAAAAAOIo=\""
],
"accept-language": [
"en-US"
@@ -1910,7 +1910,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:51:35 GMT"
+ "Fri, 09 Mar 2018 19:46:38 GMT"
],
"Pragma": [
"no-cache"
@@ -1922,16 +1922,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "64419166-7ee0-4eac-8275-1ecae96ec7a4"
+ "97f44dba-5711-4c33-ad96-4c1abbdc869a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1190"
],
"x-ms-correlation-request-id": [
- "0382adfe-d408-441c-b49c-53c6f14e9288"
+ "80c76a0c-0c2c-45fd-9dc5-a5218da36d2c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T185135Z:0382adfe-d408-441c-b49c-53c6f14e9288"
+ "WESTUS2:20180309T194639Z:80c76a0c-0c2c-45fd-9dc5-a5218da36d2c"
],
"X-Content-Type-Options": [
"nosniff"
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyUriTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyUriTests/CreateListUpdateDelete.json
index e3bfdb991cff3..b47f75c498de3 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyUriTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PolicyUriTests/CreateListUpdateDelete.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "d6bcaac3-b3e4-4f19-b4b2-471663d0c674"
+ "123e8d68-8bda-45cc-8c76-0f3b3e30090b"
],
"accept-language": [
"en-US"
@@ -23,7 +23,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:29 GMT"
+ "Fri, 09 Mar 2018 19:29:46 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69af3eec-63ae-4907-b7ab-0b29630f777b",
- "897ac3dc-bec0-4565-85f4-6ccc6b69dd04"
+ "21e71c30-fbd7-4b05-b1a9-a1bd3648ff08",
+ "01521afc-8cb7-43a5-9784-10a4abe94470"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "58aaf275-1152-4db9-87e5-1241dd34ae67"
+ "a3ae4437-5f64-46eb-8630-88874e6fe5e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181030Z:58aaf275-1152-4db9-87e5-1241dd34ae67"
+ "WESTUS2:20180309T192946Z:a3ae4437-5f64-46eb-8630-88874e6fe5e8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a1ce726-09e6-4cb7-89e8-ae14ea5178bb"
+ "65a9d5c0-6099-4911-a32b-542de292f73f"
],
"accept-language": [
"en-US"
@@ -91,7 +91,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:30 GMT"
+ "Fri, 09 Mar 2018 19:29:46 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "638e0a8c-de83-4bd9-b07d-b3aeae483a16"
+ "43c9057b-f4bd-4d26-b6d9-2cdb68503cde"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14995"
],
"x-ms-correlation-request-id": [
- "dad34bca-f723-4fee-8e6b-9a8848c57f90"
+ "c5c5a649-bd0a-45fd-bb1c-9afbbbe9aaab"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181030Z:dad34bca-f723-4fee-8e6b-9a8848c57f90"
+ "WESTUS2:20180309T192947Z:c5c5a649-bd0a-45fd-bb1c-9afbbbe9aaab"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da88d7fa-2ddb-4578-94fb-611089c23a5a"
+ "705b8f20-95fe-4260-aaf7-3cf4721f54f2"
],
"accept-language": [
"en-US"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:30 GMT"
+ "Fri, 09 Mar 2018 19:29:47 GMT"
],
"Pragma": [
"no-cache"
@@ -179,7 +179,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM9Y=\""
+ "\"AAAAAAAAN00=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -191,16 +191,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8058e119-df82-464c-aae7-67861f8e79d7"
+ "5e3dde89-472b-4deb-a59a-75c61f72079b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14994"
],
"x-ms-correlation-request-id": [
- "27a6a370-a3c7-43d6-a45b-9c38c2b42ce2"
+ "7dea4a4b-c129-425b-b6f9-0bf5a5f495b3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181030Z:27a6a370-a3c7-43d6-a45b-9c38c2b42ce2"
+ "WESTUS2:20180309T192947Z:7dea4a4b-c129-425b-b6f9-0bf5a5f495b3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -209,10 +209,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTkyMjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTE1OTM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description4249\",\r\n \"displayName\": \"display1000\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path6246\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"description4990\",\r\n \"displayName\": \"display5255\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path4669\",\r\n \"protocols\": [\r\n \"https\",\r\n \"http\"\r\n ]\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -221,7 +221,7 @@
"240"
],
"x-ms-client-request-id": [
- "1309630c-6abc-4a0f-af62-e441a294d812"
+ "157da753-de6c-4e7f-9f96-171b6098186d"
],
"accept-language": [
"en-US"
@@ -231,7 +231,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi9225\",\r\n \"properties\": {\r\n \"displayName\": \"display1000\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description4249\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path6246\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"policyapi1593\",\r\n \"properties\": {\r\n \"displayName\": \"display5255\",\r\n \"apiRevision\": \"1\",\r\n \"description\": \"description4990\",\r\n \"serviceUrl\": \"https://echoapi.cloudapp.net/echo\",\r\n \"path\": \"path4669\",\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}",
"ResponseHeaders": {
"Content-Length": [
"760"
@@ -246,13 +246,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:31 GMT"
+ "Fri, 09 Mar 2018 19:29:48 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN0U=\""
+ "\"AAAAAAAAOAs=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -261,16 +261,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "66ac3ad9-3815-4942-9e41-96af32b34e01"
+ "a3c8eeb4-fa5a-4099-a142-b62cbb19d809"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "372d77de-117e-4b8f-afe5-02e465de82f1"
+ "f121b485-8e59-400b-83e8-330252631622"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181031Z:372d77de-117e-4b8f-afe5-02e465de82f1"
+ "WESTUS2:20180309T192948Z:f121b485-8e59-400b-83e8-330252631622"
],
"X-Content-Type-Options": [
"nosniff"
@@ -279,8 +279,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225/policies/policy?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTkyMjUvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593/policies/policy?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTE1OTMvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"policyContent\": \"https://raw.githubusercontent.com/Azure/api-management-samples/master/sdkClientResources/ApiPolicy.xml\",\r\n \"contentFormat\": \"xml-link\"\r\n }\r\n}",
"RequestHeaders": {
@@ -291,7 +291,7 @@
"189"
],
"x-ms-client-request-id": [
- "9bac1807-4332-440d-99de-2265af68fa28"
+ "d0109e97-81e6-4866-82f7-a12a52674ad3"
],
"accept-language": [
"en-US"
@@ -301,7 +301,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"policyContent\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593/policies/policy\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/policies\",\r\n \"name\": \"policy\",\r\n \"properties\": {\r\n \"policyContent\": \"\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"790"
@@ -316,13 +316,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:31 GMT"
+ "Fri, 09 Mar 2018 19:29:49 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN0c=\""
+ "\"AAAAAAAAOA0=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -331,16 +331,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1e618e87-2be2-4cfb-9506-6d98f0201b96"
+ "4cbce26a-4b2b-440a-95ff-653e2ecc373f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "afcd0963-5ab8-47d5-9361-4878c31e81d5"
+ "cf146b93-e9b4-4647-a3ae-f506c08d0d3d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181032Z:afcd0963-5ab8-47d5-9361-4878c31e81d5"
+ "WESTUS2:20180309T192949Z:cf146b93-e9b4-4647-a3ae-f506c08d0d3d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -349,13 +349,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225/policies/policy?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTkyMjUvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593/policies/policy?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTE1OTMvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "90dacfef-0550-46fd-bdba-9c25a0d3aa22"
+ "a88cecac-565d-430f-ae98-7e7eefe020f4"
],
"accept-language": [
"en-US"
@@ -377,13 +377,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:31 GMT"
+ "Fri, 09 Mar 2018 19:29:49 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN0c=\""
+ "\"AAAAAAAAOA0=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "369ee332-5ab4-4f27-8dff-4f04a51d6a12"
+ "269142b5-ab7f-439c-bbec-4fdfe2daace5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14993"
],
"x-ms-correlation-request-id": [
- "6b78c371-732d-4e5a-886b-ea92fe7476d8"
+ "e2b76090-3d0b-4e02-a740-487952c0306b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181032Z:6b78c371-732d-4e5a-886b-ea92fe7476d8"
+ "WESTUS2:20180309T192949Z:e2b76090-3d0b-4e02-a740-487952c0306b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -410,16 +410,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225/policies/policy?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTkyMjUvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593/policies/policy?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTE1OTMvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aef28d5c-bbb8-4034-9b61-39ab6e09f096"
+ "a0dfb89d-f9e0-46c9-9fcd-b71811f7a195"
],
"If-Match": [
- "\"AAAAAAAAN0c=\""
+ "\"AAAAAAAAOA0=\""
],
"accept-language": [
"en-US"
@@ -441,7 +441,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:32 GMT"
+ "Fri, 09 Mar 2018 19:29:49 GMT"
],
"Pragma": [
"no-cache"
@@ -453,16 +453,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "651bdba8-768f-409b-b3e5-ef70f58b5ffc"
+ "927e69ee-6b08-463d-80a5-95e3e7b084b6"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "4135cad0-467f-451b-b963-c0b9302a25fd"
+ "fde78093-c96a-4bd3-9904-60e4dd4922c8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181032Z:4135cad0-467f-451b-b963-c0b9302a25fd"
+ "WESTUS2:20180309T192950Z:fde78093-c96a-4bd3-9904-60e4dd4922c8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -471,13 +471,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225/policies/policy?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTkyMjUvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593/policies/policy?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTE1OTMvcG9saWNpZXMvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "885bf0aa-0a02-4c30-bf65-687b94b2100a"
+ "04a45829-2054-4b4d-84e4-9c77bef52d1a"
],
"accept-language": [
"en-US"
@@ -502,7 +502,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:32 GMT"
+ "Fri, 09 Mar 2018 19:29:50 GMT"
],
"Pragma": [
"no-cache"
@@ -514,16 +514,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84bd627b-6408-46eb-b9c6-cf75d0f1af7e"
+ "a6003d40-6bfd-4883-8f08-c06a4e39715d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14992"
],
"x-ms-correlation-request-id": [
- "0b7677ff-4a48-4617-b133-16baa9d5cb72"
+ "74597b7e-b437-4f92-9a0b-924e58134146"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181032Z:0b7677ff-4a48-4617-b133-16baa9d5cb72"
+ "WESTUS2:20180309T192950Z:74597b7e-b437-4f92-9a0b-924e58134146"
],
"X-Content-Type-Options": [
"nosniff"
@@ -532,13 +532,13 @@
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi9225?deleteRevisions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTkyMjU/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/policyapi1593?deleteRevisions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL3BvbGljeWFwaTE1OTM/ZGVsZXRlUmV2aXNpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c93fc54-6c3f-46a7-adf1-88670d9ca42c"
+ "e0b690de-a138-4ea6-9ad8-24a0e526f4bc"
],
"If-Match": [
"*"
@@ -563,7 +563,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:32 GMT"
+ "Fri, 09 Mar 2018 19:29:50 GMT"
],
"Pragma": [
"no-cache"
@@ -575,16 +575,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e52b5a1f-a2cb-475a-9818-f055020e9971"
+ "c49a7d68-ace1-47ce-8e6e-08598fd2c4d2"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "864ce88c-4b8b-4e74-8394-83be2a40f2a3"
+ "7b5ca24c-1f45-4b04-839a-907f50a9dde2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181033Z:864ce88c-4b8b-4e74-8394-83be2a40f2a3"
+ "WESTUS2:20180309T192950Z:7b5ca24c-1f45-4b04-839a-907f50a9dde2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -599,7 +599,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92e763c8-c1db-4a76-b5ad-7c54f61d460b"
+ "5c235bcf-981e-41bd-93da-226bff4e6e35"
],
"accept-language": [
"en-US"
@@ -621,7 +621,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:32 GMT"
+ "Fri, 09 Mar 2018 19:29:50 GMT"
],
"Pragma": [
"no-cache"
@@ -639,16 +639,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6988f947-91f2-43e1-898d-f91cf2e586f9"
+ "d825ae8b-8394-4d7e-8554-b2a4ba7ae4e0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14991"
],
"x-ms-correlation-request-id": [
- "12620d2d-e7ff-4e6d-b918-fa17bc1b828d"
+ "b00995ad-0d1f-4f41-985b-4e3d4c07b940"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181033Z:12620d2d-e7ff-4e6d-b918-fa17bc1b828d"
+ "WESTUS2:20180309T192950Z:b00995ad-0d1f-4f41-985b-4e3d4c07b940"
],
"X-Content-Type-Options": [
"nosniff"
@@ -663,7 +663,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac0468bd-d753-4681-bd3f-adbc0f526c44"
+ "80413e2e-0073-4963-9067-23bf53ac78d5"
],
"accept-language": [
"en-US"
@@ -688,7 +688,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:33 GMT"
+ "Fri, 09 Mar 2018 19:29:50 GMT"
],
"Pragma": [
"no-cache"
@@ -700,16 +700,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "99444ff1-ea85-4b26-95c5-c0ef5558eb17"
+ "038e16a1-6fb7-4bbd-85fc-445f1c8343f0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14990"
],
"x-ms-correlation-request-id": [
- "c28bf2b6-3785-4ad9-8feb-638481eee583"
+ "f9f5ab02-408b-46b8-85ac-077de55bd71a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181033Z:c28bf2b6-3785-4ad9-8feb-638481eee583"
+ "WESTUS2:20180309T192951Z:f9f5ab02-408b-46b8-85ac-077de55bd71a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -724,7 +724,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c6ea2fb-de06-4b09-9b0c-5d5144957265"
+ "8b6acbd1-fa1e-4942-aa5b-3415c251b8e8"
],
"accept-language": [
"en-US"
@@ -746,7 +746,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:33 GMT"
+ "Fri, 09 Mar 2018 19:29:52 GMT"
],
"Pragma": [
"no-cache"
@@ -755,7 +755,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN0o=\""
+ "\"AAAAAAAAOBA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -767,16 +767,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2acc6fca-d36b-41b3-b86b-bb2bdfba0fe5"
+ "e7aa1840-8b80-499d-aa3b-f12784a6d3b0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14989"
],
"x-ms-correlation-request-id": [
- "ff56a634-2397-4b71-aaf3-2dc0f59f73ce"
+ "f3465310-d6c5-477e-8b21-82812b4fcead"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181034Z:ff56a634-2397-4b71-aaf3-2dc0f59f73ce"
+ "WESTUS2:20180309T192952Z:f3465310-d6c5-477e-8b21-82812b4fcead"
],
"X-Content-Type-Options": [
"nosniff"
@@ -791,7 +791,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9980a951-c71b-4c0b-906b-341a5a5113b6"
+ "d9c0ff0a-e04b-4c77-aaf4-d8daaa944e41"
],
"accept-language": [
"en-US"
@@ -816,7 +816,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:35 GMT"
+ "Fri, 09 Mar 2018 19:29:52 GMT"
],
"Pragma": [
"no-cache"
@@ -828,16 +828,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "40dac5b5-0170-4bd1-8c82-131554c68655"
+ "eb0a3abb-479f-486e-8b98-0ce00c7b2318"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14987"
],
"x-ms-correlation-request-id": [
- "dd34514d-2128-477c-94ed-6ef35fadef9d"
+ "e1dfa966-2f11-4bf1-8f4c-e085b85c4aa6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181035Z:dd34514d-2128-477c-94ed-6ef35fadef9d"
+ "WESTUS2:20180309T192952Z:e1dfa966-2f11-4bf1-8f4c-e085b85c4aa6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -858,7 +858,7 @@
"193"
],
"x-ms-client-request-id": [
- "2458847e-82f9-489f-b814-1cd0701c5218"
+ "55ab8b0d-bc6b-4e7e-8a88-4e03690353ee"
],
"accept-language": [
"en-US"
@@ -883,13 +883,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:33 GMT"
+ "Fri, 09 Mar 2018 19:29:51 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN0o=\""
+ "\"AAAAAAAAOBA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -898,16 +898,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cf2bac7f-3046-4573-bbb1-7cce77f3b6b4"
+ "24a08b29-ccc9-4194-b066-5194de1acbc7"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "0357d847-09e5-4d07-852e-ad7aca05729b"
+ "2d2653f9-f4a4-4e10-b514-bdf83a9cad2e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181034Z:0357d847-09e5-4d07-852e-ad7aca05729b"
+ "WESTUS2:20180309T192951Z:2d2653f9-f4a4-4e10-b514-bdf83a9cad2e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -922,7 +922,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a37aa7ea-6c11-4cd2-b4e6-9e2aea849e2f"
+ "c8ad5ccb-3261-4235-8b84-30229388471b"
],
"accept-language": [
"en-US"
@@ -944,13 +944,13 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:34 GMT"
+ "Fri, 09 Mar 2018 19:29:52 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN0o=\""
+ "\"AAAAAAAAOBA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -959,16 +959,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3ab497ad-f031-439c-bb71-a0408fbc8bbf"
+ "2a18afc7-f427-4d0a-96ba-4f9db96f1440"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14988"
],
"x-ms-correlation-request-id": [
- "41e0c79d-d6fe-4e48-9aff-0f7908d0a110"
+ "e0cfc406-2651-4a38-a1fe-13ec94aac56d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181034Z:41e0c79d-d6fe-4e48-9aff-0f7908d0a110"
+ "WESTUS2:20180309T192952Z:e0cfc406-2651-4a38-a1fe-13ec94aac56d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -983,10 +983,10 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44708db5-50eb-45fd-89c6-2a61b93dd855"
+ "d0f762e5-ebf5-4c17-b285-4a4cb9cb0f99"
],
"If-Match": [
- "\"AAAAAAAAN0o=\""
+ "\"AAAAAAAAOBA=\""
],
"accept-language": [
"en-US"
@@ -1008,7 +1008,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 18:10:34 GMT"
+ "Fri, 09 Mar 2018 19:29:52 GMT"
],
"Pragma": [
"no-cache"
@@ -1020,16 +1020,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e39b926-b152-45fd-9466-c309e5238242"
+ "13712fe6-13ff-47e4-b3af-2d4cecc77ad4"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "5a6733c5-1c9f-4c47-be5e-ece16db0307f"
+ "aa4671a1-1c48-4dfc-8d83-777e71b4c083"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T181034Z:5a6733c5-1c9f-4c47-be5e-ece16db0307f"
+ "WESTUS2:20180309T192952Z:aa4671a1-1c48-4dfc-8d83-777e71b4c083"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1040,10 +1040,10 @@
],
"Names": {
"CreateListUpdateDelete": [
- "policyapi9225",
- "display1000",
- "description4249",
- "path6246"
+ "policyapi1593",
+ "display5255",
+ "description4990",
+ "path4669"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/ApisListAddRemove.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/ApisListAddRemove.json
index cc1867ce24266..4e5183f4956f9 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/ApisListAddRemove.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/ApisListAddRemove.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "54526d38-a480-4ef8-a8fd-829fc7b15b17"
+ "31179c7b-6413-47e7-a276-949e2a1cf6d9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:30 GMT"
+ "Fri, 09 Mar 2018 19:31:45 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7021b69-35b4-40e9-94c3-491bca11e266",
- "25ab36f0-8f22-42cf-b8c6-ac4826554238"
+ "d7fb523f-5999-4627-a4f7-2085d3897fb5",
+ "406e83de-82e2-4d72-aed0-d9c68d7cfd13"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "443d4b3f-851d-43f8-9f39-9e0229677df7"
+ "2799b5fb-e96b-4c9c-af97-ba0ccfdd7482"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070330Z:443d4b3f-851d-43f8-9f39-9e0229677df7"
+ "WESTUS2:20180309T193146Z:2799b5fb-e96b-4c9c-af97-ba0ccfdd7482"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "476f1c31-8da0-4057-b676-caaa47f0bf1a"
+ "cf2b0cbb-e499-43ba-98ce-28efc1b2ffa6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:30 GMT"
+ "Fri, 09 Mar 2018 19:31:45 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d56a8976-2a15-4622-b5fd-c9798134cf8b"
+ "d6783f17-12ce-43f6-bc8e-ce027b65a48e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "5b000065-bac7-4d21-b211-2a738651b201"
+ "e15771e8-1072-423d-81f2-4545003c5b8b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070331Z:5b000065-bac7-4d21-b211-2a738651b201"
+ "WESTUS2:20180309T193146Z:e15771e8-1072-423d-81f2-4545003c5b8b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46bccfa9-6afb-4314-ba77-c072c2d8577b"
+ "1ba03720-afdd-4697-ba16-351a36220e68"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:30 GMT"
+ "Fri, 09 Mar 2018 19:31:45 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "72574d9c-6b49-4fc1-ba8a-1f7008c641ce"
+ "c2631a66-7c48-4e33-8435-35f0875bee59"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "bb25f984-86ea-4b41-ab4a-e7c49251fb1f"
+ "394e056c-2416-4c45-bc9a-b1088de75a9e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070331Z:bb25f984-86ea-4b41-ab4a-e7c49251fb1f"
+ "WESTUS2:20180309T193146Z:394e056c-2416-4c45-bc9a-b1088de75a9e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "46b1062a-380c-4798-840d-f6d8260970ca"
+ "f2de5175-6db6-434a-b168-94fe2b894464"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"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 \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:30 GMT"
+ "Fri, 09 Mar 2018 19:31:46 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5568260-69a5-4ac4-b9dd-7d5b69ef4a70"
+ "3aa75173-b12c-425f-9d16-79aeb866f9a0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "c1325e48-8573-420e-8195-1b1ed1b9d838"
+ "de5d5e25-0219-4773-89a9-3be173e8cd83"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070331Z:c1325e48-8573-420e-8195-1b1ed1b9d838"
+ "WESTUS2:20180309T193147Z:de5d5e25-0219-4773-89a9-3be173e8cd83"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc070635-7080-4f22-8b58-b364657b88b2"
+ "1ceee0ea-93df-4ebe-9ae0-89b24e9f0c4c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:31 GMT"
+ "Fri, 09 Mar 2018 19:31:47 GMT"
],
"Pragma": [
"no-cache"
@@ -304,16 +316,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73d4b5b3-e768-420d-acb4-eb66c4b9422c"
+ "5e44aa75-76fc-45d0-be79-25062f0cdedb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "d0932013-d9b2-43cc-a397-b0d03ab0c314"
+ "32a9c142-b21d-4c4d-8aa4-7e087074deba"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070332Z:d0932013-d9b2-43cc-a397-b0d03ab0c314"
+ "WESTUS2:20180309T193148Z:32a9c142-b21d-4c4d-8aa4-7e087074deba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -325,14 +340,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17ac6dd1-4862-41d8-9f00-881c04e1d729"
+ "ede732d8-79c9-4d15-8a02-e605db98e03b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"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 \"nextLink\": \"\"\r\n}",
@@ -347,7 +362,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:32 GMT"
+ "Fri, 09 Mar 2018 19:31:48 GMT"
],
"Pragma": [
"no-cache"
@@ -365,16 +380,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3ed862d2-e4df-49c4-a9a4-726027d29856"
+ "614ee76c-3429-43c4-bd44-89411b9ddbaf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "7d8d0770-d27f-4833-b54e-73c8cc87da03"
+ "036c0712-69c7-4d52-b023-dc316bfab2b7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070333Z:7d8d0770-d27f-4833-b54e-73c8cc87da03"
+ "WESTUS2:20180309T193149Z:036c0712-69c7-4d52-b023-dc316bfab2b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -386,14 +404,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fa49f45a-7b2b-408e-9b7d-274343e08e2b"
+ "d3c6ba9e-ef0f-4745-bd14-0e917a13ab3b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"serviceUrl\": \"http://echoapi.cloudapp.net/api\",\r\n \"path\": \"echo\",\r\n \"protocols\": [\r\n \"https\"\r\n ],\r\n \"authenticationSettings\": {\r\n \"oAuth2\": null,\r\n \"openid\": null\r\n },\r\n \"subscriptionKeyParameterNames\": {\r\n \"header\": \"Ocp-Apim-Subscription-Key\",\r\n \"query\": \"subscription-key\"\r\n },\r\n \"isCurrent\": true\r\n }\r\n}",
@@ -408,7 +426,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:30 GMT"
+ "Fri, 09 Mar 2018 19:31:46 GMT"
],
"Pragma": [
"no-cache"
@@ -417,7 +435,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAD78=\""
+ "\"AAAAAAAAN1A=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -429,16 +447,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d38207b1-817f-4f4e-b8a9-55abcc37d41f"
+ "f2b93d06-19e9-4d2d-a5d7-decce07b145a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "a9c02740-1362-432a-833a-19c42eca6af4"
+ "715a110b-ebf6-402a-a192-b5352a58f546"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070331Z:a9c02740-1362-432a-833a-19c42eca6af4"
+ "WESTUS2:20180309T193147Z:715a110b-ebf6-402a-a192-b5352a58f546"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -450,14 +471,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4472a920-102d-47f3-83dc-ba35642a3586"
+ "72f5ac13-df46-4d9c-8f44-421891e7e404"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -472,7 +493,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:31 GMT"
+ "Fri, 09 Mar 2018 19:31:47 GMT"
],
"Pragma": [
"no-cache"
@@ -484,16 +505,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b66a13c1-1fae-44c3-b68d-6cd6d3e527c2"
+ "287005db-ab50-4e36-9478-2bfbbe6cdede"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "0a0a696b-f58a-4703-b7f1-268e1362407b"
+ "16494e07-426c-4751-a83a-6c4c0f5b36e6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070332Z:0a0a696b-f58a-4703-b7f1-268e1362407b"
+ "WESTUS2:20180309T193148Z:16494e07-426c-4751-a83a-6c4c0f5b36e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -505,14 +529,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9f882e7-30b2-4458-8c4a-88be70440721"
+ "ffd00887-bafb-44d3-844b-b6c909437fe9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"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}",
@@ -530,13 +554,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:32 GMT"
+ "Fri, 09 Mar 2018 19:31:48 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAD78=\""
+ "\"AAAAAAAAN1A=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -545,16 +569,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6e24ea51-7779-4cbd-9435-531e83cb9136"
+ "e4593bc4-5fd4-42a0-98db-c9b5e614bef3"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "333f8355-d978-4aa5-a28b-928113ea1be9"
+ "406b70dc-32e5-4306-95f5-6c2f850913fa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070332Z:333f8355-d978-4aa5-a28b-928113ea1be9"
+ "WESTUS2:20180309T193149Z:406b70dc-32e5-4306-95f5-6c2f850913fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/CreateListUpdateDelete.json
index 8de6e513736e3..4ac25307a26d2 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/CreateListUpdateDelete.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "d9dad58d-fc00-4608-b8ca-73344424dfec"
+ "956a9a50-8793-45ee-8f2c-43a67a2dfa79"
],
"accept-language": [
"en-US"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:56 GMT"
+ "Fri, 09 Mar 2018 19:30:48 GMT"
],
"Pragma": [
"no-cache"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6fd8cc85-f303-4c7f-aecd-6f56f2e559e0",
- "b9377489-e9c1-4019-9899-8ed45efe9e8a"
+ "5bb31624-1815-440f-8b15-866b3c770b03",
+ "b30628ce-36d1-4fd9-9613-e7de6d4ffae0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "c74ab59f-d0db-46be-873b-9571f81834fe"
+ "3d0df189-2e5c-4b25-ada6-1bcde1ce41e1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212557Z:c74ab59f-d0db-46be-873b-9571f81834fe"
+ "WESTUS2:20180309T193049Z:3d0df189-2e5c-4b25-ada6-1bcde1ce41e1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01f0a889-a03a-4e68-8c47-997cadb20f6b"
+ "b8f3ea3e-8cfc-403c-8fad-76a46d8503ad"
],
"accept-language": [
"en-US"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:56 GMT"
+ "Fri, 09 Mar 2018 19:30:49 GMT"
],
"Pragma": [
"no-cache"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "531a0fd3-a3bf-4eab-8f75-40db970dc7f4"
+ "a4babea3-d779-4cdb-a02b-9b503de9e9f5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "6199af3d-08cf-4a25-983d-9ba2e6b34d1c"
+ "f69654df-ac6e-41a4-912f-717a9569be2a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212557Z:6199af3d-08cf-4a25-983d-9ba2e6b34d1c"
+ "WESTUS2:20180309T193049Z:f69654df-ac6e-41a4-912f-717a9569be2a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "524f6241-a8d1-489e-afc0-afc416b50b22"
+ "b215d2b2-4ed0-452e-ac15-4b9039ee589c"
],
"accept-language": [
"en-US"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:57 GMT"
+ "Fri, 09 Mar 2018 19:30:49 GMT"
],
"Pragma": [
"no-cache"
@@ -188,16 +188,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3607061c-aee1-462c-ac7c-a301265d52a9"
+ "1c49cbc5-268c-4d95-b4db-52c3c95b6b98"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "4975d581-45d7-495b-9e76-179ed75d158b"
+ "f60bf1a0-f9fa-4fa7-9e2c-214582d0e075"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212557Z:4975d581-45d7-495b-9e76-179ed75d158b"
+ "WESTUS2:20180309T193050Z:f60bf1a0-f9fa-4fa7-9e2c-214582d0e075"
],
"X-Content-Type-Options": [
"nosniff"
@@ -206,10 +206,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription5836\",\r\n \"terms\": \"productTerms364\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"displayName\": \"productName8968\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription6668\",\r\n \"terms\": \"productTerms273\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"displayName\": \"productName2205\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -218,7 +218,7 @@
"272"
],
"x-ms-client-request-id": [
- "df0522f1-7371-4061-b62c-1c5d2529dde3"
+ "196af363-5d35-4951-858b-db3c78d5f410"
],
"accept-language": [
"en-US"
@@ -228,7 +228,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct9484\",\r\n \"properties\": {\r\n \"displayName\": \"productName8968\",\r\n \"description\": \"productDescription5836\",\r\n \"terms\": \"productTerms364\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct5629\",\r\n \"properties\": {\r\n \"displayName\": \"productName2205\",\r\n \"description\": \"productDescription6668\",\r\n \"terms\": \"productTerms273\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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}",
"ResponseHeaders": {
"Content-Length": [
"1053"
@@ -243,13 +243,13 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:58 GMT"
+ "Fri, 09 Mar 2018 19:30:50 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN6s=\""
+ "\"AAAAAAAAOBM=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -258,16 +258,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a9f7517f-fe63-404d-9f47-3a9cdbf944c7"
+ "2b6a16c1-d23b-4685-8260-d78d55513940"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "3fa4ad0f-0f9b-410d-86ce-f9b1db9afcaa"
+ "1790e08f-af13-431d-861f-cbe34e7eb4fc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212558Z:3fa4ad0f-0f9b-410d-86ce-f9b1db9afcaa"
+ "WESTUS2:20180309T193050Z:1790e08f-af13-431d-861f-cbe34e7eb4fc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -276,13 +276,13 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0bf376f7-0751-44c8-90ed-0eb5edc14846"
+ "0a998aaa-0070-4efa-acc1-7afd1d773083"
],
"accept-language": [
"en-US"
@@ -304,13 +304,13 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:58 GMT"
+ "Fri, 09 Mar 2018 19:30:50 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN6s=\""
+ "\"AAAAAAAAOBM=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,16 +319,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "28bb8de9-183c-4eb0-9b8c-a453a03b022e"
+ "5ccf53ba-cc85-482c-bb50-a19d17c4ccb0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "94b61b79-8740-4598-8c92-a989a326ddcc"
+ "d375aca8-bc3d-4659-a42d-48e988dea89f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212558Z:94b61b79-8740-4598-8c92-a989a326ddcc"
+ "WESTUS2:20180309T193050Z:d375aca8-bc3d-4659-a42d-48e988dea89f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -337,13 +337,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07ff891a-5132-45b7-bee9-14dc8d88f84d"
+ "049b8cc8-fb1e-4925-89a1-b101c7b9c0c6"
],
"accept-language": [
"en-US"
@@ -365,13 +365,13 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:59 GMT"
+ "Fri, 09 Mar 2018 19:30:51 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAN68=\""
+ "\"AAAAAAAAOBc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -380,16 +380,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e427fd31-9d4f-4785-8d1e-8bd8f228d65d"
+ "a069d3f7-3c1b-445a-9f84-8e90e98785d4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14992"
],
"x-ms-correlation-request-id": [
- "0e703cb1-121c-427e-bf41-7ca3a68131e6"
+ "59fb592d-7b41-4ce5-8460-737dce586e9c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212559Z:0e703cb1-121c-427e-bf41-7ca3a68131e6"
+ "WESTUS2:20180309T193051Z:59fb592d-7b41-4ce5-8460-737dce586e9c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -398,22 +398,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription1312\",\r\n \"terms\": \"productTerms7674\",\r\n \"displayName\": \"productName9029\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"productDescription8130\",\r\n \"terms\": \"productTerms67\",\r\n \"displayName\": \"productName3281\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "146"
+ "144"
],
"x-ms-client-request-id": [
- "5ffc967c-4c6c-41a9-872c-a755e0283d62"
+ "51ae23c2-a334-4c29-8bf1-df8f09571e11"
],
"If-Match": [
- "\"AAAAAAAAN6s=\""
+ "\"AAAAAAAAOBM=\""
],
"accept-language": [
"en-US"
@@ -432,7 +432,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:58 GMT"
+ "Fri, 09 Mar 2018 19:30:50 GMT"
],
"Pragma": [
"no-cache"
@@ -444,16 +444,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4b3e0997-f81c-46f7-9b6f-08cd320522a2"
+ "0545612a-5ffb-406a-a591-395e741e4d9e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "e9d1721c-c4a0-4a61-b215-42e24bc3de53"
+ "5bca584d-7b73-4648-ac9c-ba5c5217a9d0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212558Z:e9d1721c-c4a0-4a61-b215-42e24bc3de53"
+ "WESTUS2:20180309T193051Z:5bca584d-7b73-4648-ac9c-ba5c5217a9d0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -462,13 +462,13 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d1c126e3-784d-4a42-85f6-967ab5e3e704"
+ "1be91d87-a58b-449c-b331-ec2a7167a5d2"
],
"accept-language": [
"en-US"
@@ -478,7 +478,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct9484\",\r\n \"properties\": {\r\n \"displayName\": \"productName9029\",\r\n \"description\": \"productDescription1312\",\r\n \"terms\": \"productTerms7674\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct5629\",\r\n \"properties\": {\r\n \"displayName\": \"productName3281\",\r\n \"description\": \"productDescription8130\",\r\n \"terms\": \"productTerms67\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -490,7 +490,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:58 GMT"
+ "Fri, 09 Mar 2018 19:30:50 GMT"
],
"Pragma": [
"no-cache"
@@ -499,7 +499,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAN68=\""
+ "\"AAAAAAAAOBc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -511,16 +511,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "93529cc0-b9e4-4418-8713-9ee7aeddd1e6"
+ "16474c67-9cc7-4506-b988-1b97a1f9d8f8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "b9f92c5d-10a7-4ad5-b429-66fbd6561424"
+ "352f2ea1-8372-4f18-af66-cac48fa07c42"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212559Z:b9f92c5d-10a7-4ad5-b429-66fbd6561424"
+ "WESTUS2:20180309T193051Z:352f2ea1-8372-4f18-af66-cac48fa07c42"
],
"X-Content-Type-Options": [
"nosniff"
@@ -529,13 +529,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63cbd047-5ec5-4837-b69d-756a4490770d"
+ "8ceaf425-a775-4390-87ea-03d2ee0d60d6"
],
"accept-language": [
"en-US"
@@ -560,7 +560,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:59 GMT"
+ "Fri, 09 Mar 2018 19:30:52 GMT"
],
"Pragma": [
"no-cache"
@@ -572,16 +572,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fdd3d057-2d0c-4f0b-aa49-d91272423e4c"
+ "776dfc3a-02ca-49a4-8bfa-1d02970e8950"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14991"
],
"x-ms-correlation-request-id": [
- "eb3b7c51-b8d1-40ec-9354-ac15c9ba89ce"
+ "d08a0918-c189-474f-8574-87361b59f082"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212600Z:eb3b7c51-b8d1-40ec-9354-ac15c9ba89ce"
+ "WESTUS2:20180309T193053Z:d08a0918-c189-474f-8574-87361b59f082"
],
"X-Content-Type-Options": [
"nosniff"
@@ -596,7 +596,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb0e0441-c695-4d3c-82a9-d152ebaf9048"
+ "60b470ad-8048-4636-8b70-710cc03cc8e9"
],
"accept-language": [
"en-US"
@@ -606,7 +606,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct9484\",\r\n \"properties\": {\r\n \"displayName\": \"productName9029\",\r\n \"description\": \"productDescription1312\",\r\n \"terms\": \"productTerms7674\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"newproduct5629\",\r\n \"properties\": {\r\n \"displayName\": \"productName3281\",\r\n \"description\": \"productDescription8130\",\r\n \"terms\": \"productTerms67\",\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 10,\r\n \"state\": \"notPublished\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -618,7 +618,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:58 GMT"
+ "Fri, 09 Mar 2018 19:30:50 GMT"
],
"Pragma": [
"no-cache"
@@ -636,16 +636,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2d78223a-32ab-4e2a-a18a-8cbb50c87549"
+ "7783f172-1069-4ec6-9e12-495fa97c3765"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "cb4ca99c-d773-4f14-a9ce-170bbfc4ea49"
+ "e331ad3a-2af5-46cd-8325-eca607343b2b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212559Z:cb4ca99c-d773-4f14-a9ce-170bbfc4ea49"
+ "WESTUS2:20180309T193051Z:e331ad3a-2af5-46cd-8325-eca607343b2b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -660,7 +660,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2c2c5f5-4cd1-410f-b8d5-d6d55a3b12af"
+ "5a0bfef8-6ee9-43ab-a094-e8c8284a9a57"
],
"accept-language": [
"en-US"
@@ -682,7 +682,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:58 GMT"
+ "Fri, 09 Mar 2018 19:30:50 GMT"
],
"Pragma": [
"no-cache"
@@ -700,16 +700,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "83cc0103-1dd4-4205-a6c6-0cea2cfb5e68"
+ "6c163f51-e3ba-48f8-a799-7cdd600b34fc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "d5392342-7b54-4122-8937-ad5ff646da48"
+ "d29e5ea8-4ab6-426b-a068-e9e30f61c699"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212559Z:d5392342-7b54-4122-8937-ad5ff646da48"
+ "WESTUS2:20180309T193051Z:d29e5ea8-4ab6-426b-a068-e9e30f61c699"
],
"X-Content-Type-Options": [
"nosniff"
@@ -724,7 +724,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "38fa945a-581d-44e8-8dc2-2573f18ad61f"
+ "7aeac39a-17cf-42c1-8ad9-41db8b6792cb"
],
"accept-language": [
"en-US"
@@ -746,7 +746,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:59 GMT"
+ "Fri, 09 Mar 2018 19:30:51 GMT"
],
"Pragma": [
"no-cache"
@@ -764,16 +764,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "00a80ee5-7ab3-4d0e-b3b6-926f2559f43d"
+ "90d6baef-0644-4d9a-bc67-afff5e2c57af"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14993"
],
"x-ms-correlation-request-id": [
- "9dd10662-dd0d-48c6-8e4e-ec83c6e87f35"
+ "0b975424-6851-47fd-8073-f7a36859fdd7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212559Z:9dd10662-dd0d-48c6-8e4e-ec83c6e87f35"
+ "WESTUS2:20180309T193051Z:0b975424-6851-47fd-8073-f7a36859fdd7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -782,16 +782,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?deleteSubscriptions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?deleteSubscriptions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "026e33f7-358c-47bc-a7d0-4f8047b8ed19"
+ "5e9b5a61-c39e-4195-a3e0-1e4d12f8ec5e"
],
"If-Match": [
- "\"AAAAAAAAN68=\""
+ "\"AAAAAAAAOBc=\""
],
"accept-language": [
"en-US"
@@ -813,7 +813,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:25:59 GMT"
+ "Fri, 09 Mar 2018 19:30:51 GMT"
],
"Pragma": [
"no-cache"
@@ -825,16 +825,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0cfa31cb-4bf0-4797-a587-43a0b41b299a"
+ "1753f15b-43e9-44d0-9ab5-ecfb9573ce8c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "7e3ceff9-04e9-49ef-82d9-1ace0ad9a407"
+ "9826613d-8fff-4b77-b3df-1a7e3f7c33e4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212600Z:7e3ceff9-04e9-49ef-82d9-1ace0ad9a407"
+ "WESTUS2:20180309T193052Z:9826613d-8fff-4b77-b3df-1a7e3f7c33e4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -843,13 +843,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct9484?deleteSubscriptions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0OTQ4ND9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/newproduct5629?deleteSubscriptions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9uZXdwcm9kdWN0NTYyOT9kZWxldGVTdWJzY3JpcHRpb25zPXRydWUmYXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab011bd9-8517-41ad-9f2d-8e9935f68bd4"
+ "51567b96-64c1-4889-8b72-005a0f6d8e2d"
],
"If-Match": [
"*"
@@ -871,7 +871,7 @@
"no-cache"
],
"Date": [
- "Thu, 08 Mar 2018 21:26:01 GMT"
+ "Fri, 09 Mar 2018 19:30:52 GMT"
],
"Pragma": [
"no-cache"
@@ -883,16 +883,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "249f6c0f-8125-40b7-97bf-13c4f3604214"
+ "f9217c95-2540-4250-8cab-202727ababfe"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "bff8a924-213b-4473-8d0a-67aae570c0f8"
+ "d7a2951c-7c8d-4ecc-8acc-bded6415dbec"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180308T212602Z:bff8a924-213b-4473-8d0a-67aae570c0f8"
+ "WESTUS2:20180309T193053Z:d7a2951c-7c8d-4ecc-8acc-bded6415dbec"
],
"X-Content-Type-Options": [
"nosniff"
@@ -903,13 +903,13 @@
],
"Names": {
"CreateListUpdateDelete": [
- "newproduct9484",
- "productName8968",
- "productDescription5836",
- "productTerms364",
- "productName9029",
- "productDescription1312",
- "productTerms7674"
+ "newproduct5629",
+ "productName2205",
+ "productDescription6668",
+ "productTerms273",
+ "productName3281",
+ "productDescription8130",
+ "productTerms67"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/GroupsListAddRemove.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/GroupsListAddRemove.json
index b2743a9fe1664..4c0cc55ca1523 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/GroupsListAddRemove.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/GroupsListAddRemove.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "af630fa3-c606-41cd-bbdb-4efd3069a976"
+ "8eb2ec54-7c89-4539-9743-365879f57be3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:14 GMT"
+ "Fri, 09 Mar 2018 19:30:20 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "706cd370-7dea-4edb-9f17-1a04db440a28",
- "685afec0-3032-4238-b02c-dd6674ecb376"
+ "9991f1a4-be93-490a-b902-b6c7a6435190",
+ "3914f67e-9295-42ef-982a-d7e78e4271d8"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "022843c6-a7d2-460b-ae67-e89868539852"
+ "d1557c77-75a3-4c9d-8768-1a39e0c84710"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070214Z:022843c6-a7d2-460b-ae67-e89868539852"
+ "WESTUS2:20180309T193020Z:d1557c77-75a3-4c9d-8768-1a39e0c84710"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13041325-6f64-4aca-8ac9-bad408195d31"
+ "1fe49ec3-38f9-4258-82d3-98939b09b3b5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:14 GMT"
+ "Fri, 09 Mar 2018 19:30:20 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "21e55115-5a58-4056-818f-e044b619ac6e"
+ "275171e6-f782-40c1-b86e-7c602ab2a2b0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "433252ab-32e4-4ad7-ab27-31eee68065d7"
+ "8f18f1e1-be3d-4efc-9320-45e29358d588"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070215Z:433252ab-32e4-4ad7-ab27-31eee68065d7"
+ "WESTUS2:20180309T193020Z:8f18f1e1-be3d-4efc-9320-45e29358d588"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22a5e10c-a37d-42c9-b029-e820759e1d16"
+ "362ea386-b796-49f8-bd65-dc563b9cdbd3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:15 GMT"
+ "Fri, 09 Mar 2018 19:30:21 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "955d36b1-7613-468b-8055-a8bf72df73c5"
+ "abdef156-61a4-48fe-933d-f1a9888f1ff3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "a433f71f-76c5-45a1-8434-b7581ca3c718"
+ "989ebe74-92af-4819-8f49-fa1e3d18d3f1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070215Z:a433f71f-76c5-45a1-8434-b7581ca3c718"
+ "WESTUS2:20180309T193021Z:989ebe74-92af-4819-8f49-fa1e3d18d3f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "edf9d28a-3ac2-4fef-9201-fbd9b786b122"
+ "2893110a-24c5-4a27-b806-d7d1473980e0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:15 GMT"
+ "Fri, 09 Mar 2018 19:30:21 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "175e81fd-6467-458c-a5df-7955c53c0864"
+ "a292f3ad-25b4-437f-92cd-555b5bf0f329"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "2ca48f1a-affd-4fb9-942f-70e9246570bb"
+ "c50d06ca-f39b-402f-9ae7-e985c1b2fe39"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070215Z:2ca48f1a-affd-4fb9-942f-70e9246570bb"
+ "WESTUS2:20180309T193021Z:c50d06ca-f39b-402f-9ae7-e985c1b2fe39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e54270b7-de6b-486e-a52b-dccb97207a78"
+ "9f71dc1f-24f7-4702-bf3a-6d6ff2ed785f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"nextLink\": \"\"\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:16 GMT"
+ "Fri, 09 Mar 2018 19:30:22 GMT"
],
"Pragma": [
"no-cache"
@@ -304,16 +316,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "007fc422-b801-4bce-bd7a-c5d3a11de70d"
+ "05d78046-c697-494c-8828-fe02f4be75b2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "3e886899-82d1-425e-baf2-6b90e2e37455"
+ "15955748-87f9-4dd4-8cbe-da351526e712"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070216Z:3e886899-82d1-425e-baf2-6b90e2e37455"
+ "WESTUS2:20180309T193022Z:15955748-87f9-4dd4-8cbe-da351526e712"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -325,14 +340,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "030d1f11-d762-489e-b948-b98012593659"
+ "b191052e-9e11-4baf-b7a8-d1621c5e22aa"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"nextLink\": \"\"\r\n}",
@@ -347,7 +362,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:16 GMT"
+ "Fri, 09 Mar 2018 19:30:23 GMT"
],
"Pragma": [
"no-cache"
@@ -365,16 +380,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5e7a3399-6649-4b1e-9518-c3b837494b39"
+ "feb0046a-c9a5-481b-a71f-a355da7db4cb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14994"
],
"x-ms-correlation-request-id": [
- "123cc12c-39cb-4259-8f44-0095d8dc0125"
+ "2f848aa2-9169-4add-bbcd-f6092a5ad1c2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070217Z:123cc12c-39cb-4259-8f44-0095d8dc0125"
+ "WESTUS2:20180309T193023Z:2f848aa2-9169-4add-bbcd-f6092a5ad1c2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -386,14 +404,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2f86e89-6d5e-4d53-a630-6795de1173ce"
+ "03672320-867f-4ddd-ad28-a71b88f8a518"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/guests\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"guests\",\r\n \"properties\": {\r\n \"displayName\": \"Guests\",\r\n \"description\": \"Guests is a built-in group. Its membership is managed by the system. Unauthenticated users visiting the developer portal fall into this group.\",\r\n \"builtIn\": true,\r\n \"type\": \"system\",\r\n \"externalId\": null\r\n }\r\n}",
@@ -408,7 +426,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:15 GMT"
+ "Fri, 09 Mar 2018 19:30:21 GMT"
],
"Pragma": [
"no-cache"
@@ -429,16 +447,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6d7cb3f4-7ab0-4b19-aad5-4e63a34e0d6d"
+ "569ac7fc-1a19-4675-bcf2-7a113a4782d8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-correlation-request-id": [
- "59989fb3-179b-4ea4-b188-4f0af56e7e70"
+ "85588670-9296-402b-aaad-5db429dc9e40"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070215Z:59989fb3-179b-4ea4-b188-4f0af56e7e70"
+ "WESTUS2:20180309T193021Z:85588670-9296-402b-aaad-5db429dc9e40"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -450,14 +471,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6cdd89fa-4731-4586-8682-fc4bc0926e33"
+ "3531cda2-c37e-4072-bf58-4aaf63426773"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -472,7 +493,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:16 GMT"
+ "Fri, 09 Mar 2018 19:30:22 GMT"
],
"Pragma": [
"no-cache"
@@ -484,16 +505,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34319b22-6041-4172-baa6-c87b438d3ccc"
+ "1fe5974d-b49b-4c45-8bf7-1f18aa532b99"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "b24b0a6a-40cb-46ab-8296-24c6a53c2bc3"
+ "6ee1788f-d854-4127-af10-96afdf42d1fe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070216Z:b24b0a6a-40cb-46ab-8296-24c6a53c2bc3"
+ "WESTUS2:20180309T193022Z:6ee1788f-d854-4127-af10-96afdf42d1fe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -505,14 +529,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "56918b13-ceb1-4f8e-95f4-5d57f1f4d777"
+ "cc68e78e-a5ff-4860-84e1-bb48151c54d5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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}",
@@ -530,7 +554,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:02:16 GMT"
+ "Fri, 09 Mar 2018 19:30:22 GMT"
],
"Pragma": [
"no-cache"
@@ -545,16 +569,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "772c1ac7-3733-4d5a-873d-2995bfbff654"
+ "821632d1-c85c-45f6-8db7-5aa0259ea627"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "0cbee4df-f7e2-4a17-9f4c-eb9fa1992916"
+ "b97c1834-076c-4296-89ac-144c958d6018"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070217Z:0cbee4df-f7e2-4a17-9f4c-eb9fa1992916"
+ "WESTUS2:20180309T193022Z:b97c1834-076c-4296-89ac-144c958d6018"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/SubscriptionsList.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/SubscriptionsList.json
index 48fb27e473efe..b93c95e683f08 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/SubscriptionsList.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ProductTests/SubscriptionsList.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "fdb4f3df-e530-4aa1-936f-28ad515ddf2b"
+ "ccc2424b-e1dd-4b44-b8fd-41ea326952e1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:05 GMT"
+ "Fri, 09 Mar 2018 19:31:18 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f5ca50c9-9953-4cef-b585-d6b12f1899be",
- "04354bac-3cb3-427e-b1d2-fdeaed8e969a"
+ "11c0bbb9-1649-4c9c-911f-ae866cab013b",
+ "184f7a6e-9e9a-4ccb-8423-18e50515ddb0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "89a0cb49-0daf-4777-b625-a00d7b409fb3"
+ "f3e6cf74-fa8d-4cfa-90e3-5aa3a7f4f7ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070305Z:89a0cb49-0daf-4777-b625-a00d7b409fb3"
+ "WESTUS2:20180309T193119Z:f3e6cf74-fa8d-4cfa-90e3-5aa3a7f4f7ee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19e0df5e-a670-44df-a50a-6ddf081ebf5e"
+ "2a69901d-144d-47a3-8399-de01614cb8b4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:05 GMT"
+ "Fri, 09 Mar 2018 19:31:18 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bc522345-a3e6-4c2b-8608-be372e44fe73"
+ "dc76ab6f-affb-4889-8ae6-45315b33a99d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "454aa527-9aa6-4642-9fee-4f7682430e40"
+ "5ecaafd8-1e5e-4b70-ba75-3a1651c99d12"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070305Z:454aa527-9aa6-4642-9fee-4f7682430e40"
+ "WESTUS2:20180309T193119Z:5ecaafd8-1e5e-4b70-ba75-3a1651c99d12"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffd502af-84bb-442c-a099-a9a426bf1154"
+ "e84ee960-6f80-40e0-8071-ee0664fe3e6c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:05 GMT"
+ "Fri, 09 Mar 2018 19:31:18 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e8c7471-efb3-4619-90a7-80ed11846e64"
+ "61a713e3-1974-4444-be62-665177f117c3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "d864bca2-5a44-4703-a958-f9728258cf0b"
+ "3c1ebe39-75cc-4fc3-a646-bb895f02d9d3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070306Z:d864bca2-5a44-4703-a958-f9728258cf0b"
+ "WESTUS2:20180309T193119Z:3c1ebe39-75cc-4fc3-a646-bb895f02d9d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92ede707-a747-4c60-b9b8-1b63b0fede21"
+ "f879e538-b27e-40b0-bc1f-74f571250b08"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:03:06 GMT"
+ "Fri, 09 Mar 2018 19:31:19 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6572fb4-2ba7-4b61-9011-765304ab84a6"
+ "6e8c3cf1-3897-4dc9-baff-99ee7e627764"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "750852a3-f2d3-4c1d-bbfa-48f157fa18fe"
+ "a3edf558-a58e-4625-9252-81bd90dfb2fb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070306Z:750852a3-f2d3-4c1d-bbfa-48f157fa18fe"
+ "WESTUS2:20180309T193120Z:a3edf558-a58e-4625-9252-81bd90dfb2fb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PropertiesTest/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PropertiesTest/CreateListUpdateDelete.json
index 382bfb10f8af9..028250992b0ca 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PropertiesTest/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.PropertiesTest/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "486a0317-7682-4f30-bdd8-b341ba79cf7e"
+ "17379cca-5bcc-4704-afff-ad20d3d793af"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:16 GMT"
+ "Fri, 09 Mar 2018 21:45:54 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6750077-3078-41f8-967d-7d7b3af27d86",
- "337d4f90-c2c1-4379-becd-bcd4fb36a9b7"
+ "db9c5f46-132c-494e-b662-c260b1b76817",
+ "25e74a0a-01f8-4d1f-90c7-de00eaa8638c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-correlation-request-id": [
- "ec09aab8-7786-42ce-836b-0ef7f12e69fb"
+ "0195a95a-7e26-4caf-b98b-1ddb420c0664"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235616Z:ec09aab8-7786-42ce-836b-0ef7f12e69fb"
+ "WESTUS2:20180309T214554Z:0195a95a-7e26-4caf-b98b-1ddb420c0664"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4039c6da-8ae9-4b67-ae85-cc53a31ab107"
+ "d2219cbf-b66b-43e9-8cd5-e2e8e263465c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:16 GMT"
+ "Fri, 09 Mar 2018 21:45:54 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,25 +124,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0d38be97-b814-4608-bcc8-360ae92f8bb2"
+ "34dc7269-02b9-4380-bf94-65ac31f775c2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14998"
],
"x-ms-correlation-request-id": [
- "9013b12b-f3dd-4c33-993a-570e339071fd"
+ "62c55129-b68b-4755-a99b-7e5c1acd6868"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235616Z:9013b12b-f3dd-4c33-993a-570e339071fd"
+ "WESTUS2:20180309T214554Z:62c55129-b68b-4755-a99b-7e5c1acd6868"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Mjk2Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5MjQ3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay1945\",\r\n \"value\": \"propertyValue5959\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay9475\",\r\n \"value\": \"propertyValue9539\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -148,17 +154,17 @@
"105"
],
"x-ms-client-request-id": [
- "ac197467-00e3-46f3-863e-545916c6240d"
+ "591a5ad9-9a4f-4585-9cd5-5fb690a1a07d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty2962\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay1945\",\r\n \"value\": \"propertyValue5959\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty2475\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay9475\",\r\n \"value\": \"propertyValue9539\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"418"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:17 GMT"
+ "Fri, 09 Mar 2018 21:45:55 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAM/8=\""
+ "\"AAAAAAAAOS0=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,38 +194,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dda2504b-7949-4acc-8abd-7367c509e57f"
+ "1f8f229f-f9d8-4a7a-a640-1d9f35dfafc0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1198"
],
"x-ms-correlation-request-id": [
- "c871ddfc-bb92-4040-95d6-03d9930a08ef"
+ "95b929ef-4b26-4664-9801-757fe4121aa8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235617Z:c871ddfc-bb92-4040-95d6-03d9930a08ef"
+ "WESTUS2:20180309T214555Z:95b929ef-4b26-4664-9801-757fe4121aa8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Mjk2Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5MjQ3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47ed6f22-b0fb-435c-984c-ac3adfbdbe3e"
+ "47cc4670-7da1-4c7d-bde7-4a6319f45bba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty2962\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay1945\",\r\n \"value\": \"propertyValue5959\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty2475\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay9475\",\r\n \"value\": \"propertyValue9539\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:17 GMT"
+ "Fri, 09 Mar 2018 21:45:55 GMT"
],
"Pragma": [
"no-cache"
@@ -240,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM/8=\""
+ "\"AAAAAAAAOS0=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,35 +261,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aa28cc0f-dc76-40e9-9e00-6058468caa6e"
+ "189c53ff-e7c9-4c24-bec7-62508d0381c6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14997"
],
"x-ms-correlation-request-id": [
- "d9bafc9a-53f3-4a7e-8aee-7fb58c68298d"
+ "8d9c28ad-ec1a-4d1f-96d3-7cf8c988fe57"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235617Z:d9bafc9a-53f3-4a7e-8aee-7fb58c68298d"
+ "WESTUS2:20180309T214555Z:8d9c28ad-ec1a-4d1f-96d3-7cf8c988fe57"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Mjk2Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5MjQ3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69cce272-e1c4-487a-be90-8d1305b75397"
+ "4638bdad-e2c5-4c75-8e15-e0716d3e9fba"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Property not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -298,7 +310,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:56 GMT"
],
"Pragma": [
"no-cache"
@@ -310,25 +322,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1708afb-6213-4511-ab61-e90585cee0cf"
+ "4354dbda-be78-4898-8e6f-f24b9a5255b3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14995"
],
"x-ms-correlation-request-id": [
- "5fda67ab-9ba3-4f9a-8ac6-e35c692ceeda"
+ "c29e1f29-bf17-4877-a935-ca0284e907bd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:5fda67ab-9ba3-4f9a-8ac6-e35c692ceeda"
+ "WESTUS2:20180309T214556Z:c29e1f29-bf17-4877-a935-ca0284e907bd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"secretPropertydisplay9583\",\r\n \"value\": \"secretPropertyValue1756\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true,\r\n \"displayName\": \"secretPropertydisplay9400\",\r\n \"value\": \"secretPropertyValue5170\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -337,20 +352,20 @@
"177"
],
"x-ms-client-request-id": [
- "c95b5222-ab69-4390-89c6-9b63646c057a"
+ "47fc4e00-5c65-4d38-b57e-8d6fa08e436a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty159\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay9583\",\r\n \"value\": \"secretPropertyValue1756\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty4368\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay9400\",\r\n \"value\": \"secretPropertyValue5170\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "453"
+ "455"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -362,13 +377,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:17 GMT"
+ "Fri, 09 Mar 2018 21:45:55 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANAE=\""
+ "\"AAAAAAAAOS4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -377,16 +392,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7452c88-d66c-4ad7-b872-7b3270fbf6c4"
+ "0448edfc-47fa-439c-bc29-c7eb583ecbf5"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1197"
],
"x-ms-correlation-request-id": [
- "6aafef97-2785-4424-84c5-a497d53646b8"
+ "a811ee21-ed70-4d5e-845c-9b8d70afcfd9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235617Z:6aafef97-2785-4424-84c5-a497d53646b8"
+ "WESTUS2:20180309T214555Z:a811ee21-ed70-4d5e-845c-9b8d70afcfd9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -398,17 +416,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef7fdea1-dcea-46f6-be95-96f27c08ade1"
+ "6f12c8a9-775a-455a-9020-3e4a09ab1363"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty2962\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay1945\",\r\n \"value\": \"propertyValue5959\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty159\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay9583\",\r\n \"value\": \"secretPropertyValue1756\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"newproperty2475\",\r\n \"properties\": {\r\n \"displayName\": \"propertydisplay9475\",\r\n \"value\": \"propertyValue9539\",\r\n \"tags\": null,\r\n \"secret\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty4368\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay9400\",\r\n \"value\": \"secretPropertyValue5170\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -420,7 +438,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:17 GMT"
+ "Fri, 09 Mar 2018 21:45:55 GMT"
],
"Pragma": [
"no-cache"
@@ -438,28 +456,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6b5442c2-7dfa-4e2a-8cc1-0de772a7b5e6"
+ "f05f07f9-d087-4d6f-aee2-c98111da847e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14996"
],
"x-ms-correlation-request-id": [
- "109828b7-c4c5-442b-95db-779f24e3563c"
+ "4ab6a1da-823f-46be-88e6-e496012ebf6c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235617Z:109828b7-c4c5-442b-95db-779f24e3563c"
+ "WESTUS2:20180309T214556Z:4ab6a1da-823f-46be-88e6-e496012ebf6c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Mjk2Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5MjQ3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ddabeed5-10f4-4e7a-bd8d-0f550a9564e3"
+ "7d3d55ee-f267-473f-9869-8bee895d0e24"
],
"If-Match": [
"*"
@@ -469,7 +490,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -484,7 +505,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:17 GMT"
+ "Fri, 09 Mar 2018 21:45:56 GMT"
],
"Pragma": [
"no-cache"
@@ -496,28 +517,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69d82d5d-ce38-476c-b7fc-17cdb80e29d2"
+ "b6743c71-8ec8-4e94-9b5d-26e304ccd168"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1196"
],
"x-ms-correlation-request-id": [
- "77f3cb84-e4bb-4535-9b3c-9932de764165"
+ "90ac6d70-0791-4a49-9bef-0c3f62fd8673"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:77f3cb84-e4bb-4535-9b3c-9932de764165"
+ "WESTUS2:20180309T214556Z:90ac6d70-0791-4a49-9bef-0c3f62fd8673"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2962?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5Mjk2Mj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/newproperty2475?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL25ld3Byb3BlcnR5MjQ3NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34f85cca-1a6a-4b9e-a9e6-29b83db7bbcb"
+ "a28dd789-268a-47ec-b6f3-1f927cf063d1"
],
"If-Match": [
"*"
@@ -527,7 +551,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -539,7 +563,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:57 GMT"
],
"Pragma": [
"no-cache"
@@ -551,35 +575,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c89335b7-53d3-4ee7-8c9f-66492fb66b6c"
+ "8e385879-84de-4256-a57f-1cf002f0e884"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
+ "1193"
],
"x-ms-correlation-request-id": [
- "caf448ec-2e2f-4f87-840f-9b2a0231441c"
+ "f0a118e7-e82b-43f7-a6cb-6bd7c24b282b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235619Z:caf448ec-2e2f-4f87-840f-9b2a0231441c"
+ "WESTUS2:20180309T214557Z:f0a118e7-e82b-43f7-a6cb-6bd7c24b282b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08867b00-eac2-4c31-8993-e30e499458c7"
+ "359cffe6-ad9a-45d3-a076-1dd6fbb78fcc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -594,13 +621,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:56 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANAE=\""
+ "\"AAAAAAAAOS4=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -609,23 +636,26 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "723685a7-989f-49ab-a0f0-004b7eeb3f29"
+ "f7b88b6b-9095-4b25-9da6-7c0994ade425"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14994"
],
"x-ms-correlation-request-id": [
- "8bbf0356-1167-4b94-90eb-9de2a1ab7aac"
+ "17c0231d-a819-444d-b44b-3c1632c5668e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:8bbf0356-1167-4b94-90eb-9de2a1ab7aac"
+ "WESTUS2:20180309T214556Z:17c0231d-a819-444d-b44b-3c1632c5668e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"secret\": false\r\n }\r\n}",
"RequestHeaders": {
@@ -636,17 +666,17 @@
"49"
],
"x-ms-client-request-id": [
- "9e4ff15e-f494-42d3-88cd-57d225ce271e"
+ "8244cdd3-a9a6-401e-bb8e-4c32ff5f10b2"
],
"If-Match": [
- "\"AAAAAAAANAE=\""
+ "\"AAAAAAAAOS4=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -658,7 +688,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:56 GMT"
],
"Pragma": [
"no-cache"
@@ -670,38 +700,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ffec71a4-be3c-46bc-ae13-dc35968a29ed"
+ "e5294472-753e-46bb-8da3-4bf6840b6417"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1195"
],
"x-ms-correlation-request-id": [
- "8043324c-a33f-43f4-a197-05efc91bc8d7"
+ "1909e3e5-8cc7-4c69-96c9-46bd01c24a1a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:8043324c-a33f-43f4-a197-05efc91bc8d7"
+ "WESTUS2:20180309T214557Z:1909e3e5-8cc7-4c69-96c9-46bd01c24a1a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9770b8b-1cab-47eb-bdd7-af4d1a34115c"
+ "9e613c5d-d244-4e24-b6c7-412a3602c238"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty159\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay9583\",\r\n \"value\": \"secretPropertyValue1756\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368\",\r\n \"type\": \"Microsoft.ApiManagement/service/properties\",\r\n \"name\": \"secretproperty4368\",\r\n \"properties\": {\r\n \"displayName\": \"secretPropertydisplay9400\",\r\n \"value\": \"secretPropertyValue5170\",\r\n \"tags\": [\r\n \"secret\"\r\n ],\r\n \"secret\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -713,7 +746,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:57 GMT"
],
"Pragma": [
"no-cache"
@@ -722,7 +755,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANAI=\""
+ "\"AAAAAAAAOS8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -734,35 +767,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "34e8d9b0-bb7d-4961-a581-3dae78968df7"
+ "20b71882-4598-4c85-b6da-5bc23a917dc5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14993"
],
"x-ms-correlation-request-id": [
- "59262a70-a083-46c4-ae8c-e5abe855049b"
+ "616f6d55-78f9-42f5-b896-cd415b0d8cfc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:59262a70-a083-46c4-ae8c-e5abe855049b"
+ "WESTUS2:20180309T214557Z:616f6d55-78f9-42f5-b896-cd415b0d8cfc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8495b0e1-1976-44d7-9adc-c8c753012f50"
+ "5513e146-3cb8-4755-a397-034e8bfe2f17"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Property not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -780,7 +816,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:57 GMT"
],
"Pragma": [
"no-cache"
@@ -792,28 +828,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a13d32a0-40cd-4216-9ef2-9a6c9bca1c94"
+ "5ea4e449-60d4-4835-b735-83dfe00d5c22"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14992"
],
"x-ms-correlation-request-id": [
- "a88055f9-79d1-497a-be2f-dffbb6a1cbde"
+ "a36d1236-ed38-402c-a3e9-27f8eb7cb918"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:a88055f9-79d1-497a-be2f-dffbb6a1cbde"
+ "WESTUS2:20180309T214557Z:a36d1236-ed38-402c-a3e9-27f8eb7cb918"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72780705-4d1c-4f7d-a33b-249bbaf13542"
+ "0a9e4278-f433-4d75-ba97-0c21ec4125bc"
],
"If-Match": [
"*"
@@ -823,7 +862,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -838,7 +877,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:18 GMT"
+ "Fri, 09 Mar 2018 21:45:57 GMT"
],
"Pragma": [
"no-cache"
@@ -850,28 +889,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c9996289-8f44-4c75-b572-99f994e4f389"
+ "4358fcc1-b15f-44b3-b77c-dcc1e28a7a5c"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1194"
],
"x-ms-correlation-request-id": [
- "78d56137-e3e8-418f-af64-6980ecd994e6"
+ "ca436ab4-bf61-44f0-9455-4b93ca98c78d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235618Z:78d56137-e3e8-418f-af64-6980ecd994e6"
+ "WESTUS2:20180309T214557Z:ca436ab4-bf61-44f0-9455-4b93ca98c78d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty159?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5MTU5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/properties/secretproperty4368?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9wZXJ0aWVzL3NlY3JldHByb3BlcnR5NDM2OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c76c2905-6c5f-428c-84ca-4070e5ee3ead"
+ "dc16ff09-e5b8-4697-a94e-3b84ebc2f66f"
],
"If-Match": [
"*"
@@ -881,7 +923,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -893,7 +935,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:56:19 GMT"
+ "Fri, 09 Mar 2018 21:45:57 GMT"
],
"Pragma": [
"no-cache"
@@ -905,16 +947,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8086204c-01ad-4180-82e2-d8d2cc6a0c05"
+ "adc74286-d608-45c4-aafb-18aa3c9d777a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1187"
+ "1192"
],
"x-ms-correlation-request-id": [
- "a89a4ebc-accb-46df-b62f-d5c31e18598f"
+ "63296d27-c110-4307-97c8-e32db7d2abc1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235619Z:a89a4ebc-accb-46df-b62f-d5c31e18598f"
+ "WESTUS2:20180309T214557Z:63296d27-c110-4307-97c8-e32db7d2abc1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -922,12 +967,12 @@
],
"Names": {
"CreateListUpdateDelete": [
- "newproperty2962",
- "secretproperty159",
- "propertydisplay1945",
- "propertyValue5959",
- "secretPropertydisplay9583",
- "secretPropertyValue1756"
+ "newproperty2475",
+ "secretproperty4368",
+ "propertydisplay9475",
+ "propertyValue9539",
+ "secretPropertydisplay9400",
+ "secretPropertyValue5170"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.RegionTests/List.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.RegionTests/List.json
index bc9d6133759a2..924b5df6a8e5d 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.RegionTests/List.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.RegionTests/List.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "48497fd0-6dad-44dd-a809-fedaeba02c7b"
+ "39511dd5-c05d-4a4b-a2ca-854cac1896d7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:05:37 GMT"
+ "Fri, 09 Mar 2018 19:35:29 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "09972895-4736-4ad3-976c-f8d98e65859f",
- "1c2f81b8-ac6c-4eae-a938-63fccf7dfff0"
+ "39c07665-045d-4bca-ab0a-14278fdf79d1",
+ "2dc8bb97-6e27-4dff-ba4f-d3e3e9f27c74"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "405dea41-afb1-459e-8341-79f2fa1f0dcb"
+ "ee303f67-873f-4375-8318-ab9073abec85"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070537Z:405dea41-afb1-459e-8341-79f2fa1f0dcb"
+ "WESTUS2:20180309T193529Z:ee303f67-873f-4375-8318-ab9073abec85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84ab820b-8a96-413e-bb15-45107e2743ea"
+ "5d9db77e-ac97-4f7b-b1cd-12c446031c79"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:05:37 GMT"
+ "Fri, 09 Mar 2018 19:35:29 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d055587b-efe9-483c-b039-12491f18a280"
+ "2f5e3b55-9d75-454b-a223-f0e8e95666b4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "db87128b-e931-43e2-afeb-97062ce80a05"
+ "d266762b-438e-4265-8573-2223f76a9679"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070537Z:db87128b-e931-43e2-afeb-97062ce80a05"
+ "WESTUS2:20180309T193529Z:d266762b-438e-4265-8573-2223f76a9679"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a500b79e-5a85-43d9-97b1-bd044753b2df"
+ "59f8700b-3f6d-46fa-8b82-1721b6a47a70"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Central US\",\r\n \"isMasterRegion\": true,\r\n \"isDeleted\": false\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 07:05:37 GMT"
+ "Fri, 09 Mar 2018 19:35:29 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f634a135-d528-4cba-9609-621fbfdaad53"
+ "2fd8ef09-070e-4355-9f94-1c28f9fb86dd"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "f3586a3a-159a-4923-bd1b-95b50824b0f1"
+ "a59cd1f5-3e06-456d-bf4e-cdf95e3b282b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T070537Z:f3586a3a-159a-4923-bd1b-95b50824b0f1"
+ "WESTUS2:20180309T193530Z:a59cd1f5-3e06-456d-bf4e-cdf95e3b282b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ReportTests/Query.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ReportTests/Query.json
index 26ac519415a96..16c0948c44224 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ReportTests/Query.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.ReportTests/Query.json
@@ -13,7 +13,7 @@
"289"
],
"x-ms-client-request-id": [
- "578c0cd6-2226-441f-afed-41505b3f66a3"
+ "95f88841-742d-4bef-b693-52ac91dcddf5"
],
"accept-language": [
"en-US"
@@ -23,7 +23,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:18 GMT"
+ "Fri, 09 Mar 2018 19:55:08 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fb03b112-0f9f-4718-b07a-35b662a11b2d",
- "6805036d-f465-44ea-9217-77a959ea5546"
+ "d8c52cdb-ad9a-40fb-aee3-cf58fc6d57c2",
+ "52eeaf52-d425-49de-9f25-e9aa363449f8"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1190"
],
"x-ms-correlation-request-id": [
- "668011b2-a16e-47a6-ae54-5b3f24f3f598"
+ "c847d742-2740-42f9-b357-8c0e14a8ef91"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003519Z:668011b2-a16e-47a6-ae54-5b3f24f3f598"
+ "WESTUS2:20180309T195508Z:c847d742-2740-42f9-b357-8c0e14a8ef91"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,7 +81,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d3357f9-19e6-4343-a9b8-79d1609af979"
+ "c23c55d9-c27b-46f4-8d13-da0a75e6968d"
],
"accept-language": [
"en-US"
@@ -91,7 +91,7 @@
"Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:18 GMT"
+ "Fri, 09 Mar 2018 19:55:08 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "57722c04-14bc-48cf-962f-e97a9271c853"
+ "df8e202a-e6c5-40e4-ac3e-d7d2eae3234d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14993"
],
"x-ms-correlation-request-id": [
- "9249f7fa-d52f-436c-94e3-1eff34e709ca"
+ "27aa9795-88f3-484d-9630-16ae9c3ef157"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003519Z:9249f7fa-d52f-436c-94e3-1eff34e709ca"
+ "WESTUS2:20180309T195509Z:27aa9795-88f3-484d-9630-16ae9c3ef157"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "190a7bbd-ecd2-4800-893b-cdd07192cf34"
+ "7e25807a-966f-4b6b-ae74-4cb672b3beb8"
],
"accept-language": [
"en-US"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:19 GMT"
+ "Fri, 09 Mar 2018 19:55:09 GMT"
],
"Pragma": [
"no-cache"
@@ -188,16 +188,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fdeda2ba-d90d-48c7-8419-1492665623e9"
+ "f12bdd57-a429-41b9-8cee-1d8bee9bd054"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14992"
],
"x-ms-correlation-request-id": [
- "f6d426d0-bd02-41b3-b629-e2b4807e8d39"
+ "df6efa6c-3ea5-404f-9054-044366b23c5a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003519Z:f6d426d0-bd02-41b3-b629-e2b4807e8d39"
+ "WESTUS2:20180309T195510Z:df6efa6c-3ea5-404f-9054-044366b23c5a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -212,7 +212,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be678f74-c2fd-49af-ac29-2fe3268b1efd"
+ "a91e1d5e-d228-47af-a98d-64b82f172a9e"
],
"accept-language": [
"en-US"
@@ -234,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:19 GMT"
+ "Fri, 09 Mar 2018 19:55:10 GMT"
],
"Pragma": [
"no-cache"
@@ -252,16 +252,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9c929fd4-cb44-4f2e-966d-a98cf3eaca2f"
+ "394bd41a-1750-4908-9023-97e6422c8927"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14991"
],
"x-ms-correlation-request-id": [
- "ba703545-11ee-4e43-81f7-a0a2bca3d26b"
+ "07582345-7b7b-463b-a7d7-c3dcc95c95a1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003520Z:ba703545-11ee-4e43-81f7-a0a2bca3d26b"
+ "WESTUS2:20180309T195511Z:07582345-7b7b-463b-a7d7-c3dcc95c95a1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -276,7 +276,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3bd0d9a-38aa-4397-acb9-755c120f5a8c"
+ "73d0b55c-5056-4a2e-9dad-2e88c0e6fc3c"
],
"accept-language": [
"en-US"
@@ -298,7 +298,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:20 GMT"
+ "Fri, 09 Mar 2018 19:55:11 GMT"
],
"Pragma": [
"no-cache"
@@ -316,16 +316,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7cb5d7f3-8337-4c8a-8d5c-b1bd38238f5c"
+ "c0f1f532-1c5c-4d41-bf6f-6dca560ec39b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14990"
],
"x-ms-correlation-request-id": [
- "e8cf8046-e128-47f3-a103-77b1058fc09e"
+ "1c88c2f0-8f78-43ef-aeca-ed616493273c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003520Z:e8cf8046-e128-47f3-a103-77b1058fc09e"
+ "WESTUS2:20180309T195512Z:1c88c2f0-8f78-43ef-aeca-ed616493273c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -340,7 +340,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7da05d47-dc88-443d-839e-f70c87dab857"
+ "ce517e84-e805-4ddc-a5b4-89d854589e15"
],
"accept-language": [
"en-US"
@@ -362,7 +362,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:20 GMT"
+ "Fri, 09 Mar 2018 19:55:12 GMT"
],
"Pragma": [
"no-cache"
@@ -380,16 +380,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96930b64-10d0-420f-87b0-da88ad9f0c7b"
+ "cfb6fb85-77c4-4f9d-8e18-2da340aa480a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14989"
],
"x-ms-correlation-request-id": [
- "3ddb4f17-3593-49c9-adb2-f863d89e0d18"
+ "2d59ed32-2a10-47e1-bfc1-16717fe89791"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003520Z:3ddb4f17-3593-49c9-adb2-f863d89e0d18"
+ "WESTUS2:20180309T195512Z:2d59ed32-2a10-47e1-bfc1-16717fe89791"
],
"X-Content-Type-Options": [
"nosniff"
@@ -404,7 +404,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "057ec554-f78f-4337-bffc-6116a2b84e39"
+ "69bcb981-a4d4-451e-8333-fe8602c6dfcc"
],
"accept-language": [
"en-US"
@@ -426,7 +426,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:20 GMT"
+ "Fri, 09 Mar 2018 19:55:13 GMT"
],
"Pragma": [
"no-cache"
@@ -444,16 +444,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "53557f22-341d-4000-91d4-dccc02db77db"
+ "9b898abd-0c43-48c1-8228-a810c9f02ed0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14988"
],
"x-ms-correlation-request-id": [
- "d257a99c-ef75-46bc-9a24-3fcd3c484d31"
+ "22de16be-9c7d-4b45-9d82-d2298f725a5e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003521Z:d257a99c-ef75-46bc-9a24-3fcd3c484d31"
+ "WESTUS2:20180309T195513Z:22de16be-9c7d-4b45-9d82-d2298f725a5e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -468,7 +468,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14e759ed-515b-45cb-b0e4-35ce09c70d76"
+ "83009700-4111-48ab-bcf1-59cb1d32b0f3"
],
"accept-language": [
"en-US"
@@ -490,7 +490,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:20 GMT"
+ "Fri, 09 Mar 2018 19:55:13 GMT"
],
"Pragma": [
"no-cache"
@@ -508,16 +508,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f45af63f-f6a6-48da-bff7-48c3aaae1ba5"
+ "ffb66f62-0ec9-4671-b834-99aa18d1fcc5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14987"
],
"x-ms-correlation-request-id": [
- "4bdd95f1-87b2-4e1d-b988-b8806f568f73"
+ "ccfbade3-e7ab-4905-91e1-53793e5cae8e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003521Z:4bdd95f1-87b2-4e1d-b988-b8806f568f73"
+ "WESTUS2:20180309T195514Z:ccfbade3-e7ab-4905-91e1-53793e5cae8e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -532,7 +532,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c3ac612-e04f-4f6f-83cc-3510d5817bf8"
+ "937b5093-27f7-4824-be3e-b75cb50cfcd5"
],
"accept-language": [
"en-US"
@@ -554,7 +554,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:20 GMT"
+ "Fri, 09 Mar 2018 19:55:14 GMT"
],
"Pragma": [
"no-cache"
@@ -572,16 +572,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1af0d1c3-4625-4ae0-9f27-3703b1c794b9"
+ "716782f8-924b-4f40-9852-53ed95c8eecd"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14986"
],
"x-ms-correlation-request-id": [
- "19fd3c82-8af8-481a-a0db-a772ec2d6a75"
+ "7c5d9268-2e7a-46aa-915a-0add57799d19"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003521Z:19fd3c82-8af8-481a-a0db-a772ec2d6a75"
+ "WESTUS2:20180309T195514Z:7c5d9268-2e7a-46aa-915a-0add57799d19"
],
"X-Content-Type-Options": [
"nosniff"
@@ -596,7 +596,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e45bae4c-89eb-40cd-b251-93861d2a14af"
+ "1f43007d-2188-4238-bb90-c038c4ec24e7"
],
"accept-language": [
"en-US"
@@ -618,7 +618,7 @@
"no-cache"
],
"Date": [
- "Tue, 06 Mar 2018 00:35:22 GMT"
+ "Fri, 09 Mar 2018 19:55:19 GMT"
],
"Pragma": [
"no-cache"
@@ -633,19 +633,19 @@
"Accept-Encoding"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14985"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "22b9e713-a9f9-48da-a0a3-88143499fea2"
+ "e0fffe55-8587-4680-965a-53a971731350"
],
"x-ms-correlation-request-id": [
- "8264b7e1-7f30-4614-b52c-a346b996e5fa"
+ "f11ad8d5-7992-46fe-83f9-4f35f866e23a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180306T003523Z:8264b7e1-7f30-4614-b52c-a346b996e5fa"
+ "WESTUS2:20180309T195520Z:f11ad8d5-7992-46fe-83f9-4f35f866e23a"
],
"X-Content-Type-Options": [
"nosniff"
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignInSettingTests/CreateUpdateReset.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignInSettingTests/CreateUpdateReset.json
index 9cec846ef3e36..c9255cd504c99 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignInSettingTests/CreateUpdateReset.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignInSettingTests/CreateUpdateReset.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "5ae14a85-0d78-44ef-8a02-1e7e5e48a528"
+ "c1847124-07e6-46eb-969a-faee9117c67c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:02 GMT"
+ "Fri, 09 Mar 2018 19:47:26 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e7917c43-fbbe-464f-97ed-ed006d6372fd",
- "cf41e219-6d96-46f3-9e53-dd81b6a4adf0"
+ "97bd9464-3fbc-42c4-8d00-71dc8965305d",
+ "80b228ee-e6bd-4b39-bb4d-ae5fa57dfe8d"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1193"
],
"x-ms-correlation-request-id": [
- "26e806fe-1ff1-43cf-b97b-faa300943ddd"
+ "dd9b9e57-ad70-417f-a020-e00a0bfd796a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035602Z:26e806fe-1ff1-43cf-b97b-faa300943ddd"
+ "WESTUS2:20180309T194727Z:dd9b9e57-ad70-417f-a020-e00a0bfd796a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4faa745-e422-4845-9c57-2aac5cbb874f"
+ "d6f3d846-39a2-4c56-a570-9f8fa3ff7f8b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:03 GMT"
+ "Fri, 09 Mar 2018 19:47:26 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d19977bf-1096-49d8-9e5a-40033e80eb9a"
+ "cf946fc4-1b90-4685-b804-8298897094eb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14997"
],
"x-ms-correlation-request-id": [
- "9db88dfc-cb16-43b3-b4bf-a8e18df3d21f"
+ "8d6ebc7e-f016-4dbe-9efb-301c0f7867b4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035603Z:9db88dfc-cb16-43b3-b4bf-a8e18df3d21f"
+ "WESTUS2:20180309T194727Z:8d6ebc7e-f016-4dbe-9efb-301c0f7867b4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,17 +148,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e170c29f-74c2-42aa-8328-788575b44470"
+ "bd277631-daec-4085-a749-4822db6aa5fe"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:03 GMT"
+ "Fri, 09 Mar 2018 19:47:27 GMT"
],
"Pragma": [
"no-cache"
@@ -179,7 +179,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANt0=\""
+ "\"AAAAAAAANt8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -191,16 +191,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "178339e8-82d1-4615-90ad-7a3d308592e4"
+ "8500ea37-5842-48f8-94ec-45cd04229ca5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14996"
],
"x-ms-correlation-request-id": [
- "72daebdc-3740-479d-bf2b-e22bd901132c"
+ "011e2c10-25d3-4564-81da-12cff7e34448"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035603Z:72daebdc-3740-479d-bf2b-e22bd901132c"
+ "WESTUS2:20180309T194727Z:011e2c10-25d3-4564-81da-12cff7e34448"
],
"X-Content-Type-Options": [
"nosniff"
@@ -215,14 +215,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e4bf2f4-8259-40f1-8b6c-9325a9e873b3"
+ "8066a5a9-a388-4843-8096-8dc351ea8390"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": true\r\n }\r\n}",
@@ -237,7 +237,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:04 GMT"
+ "Fri, 09 Mar 2018 19:47:28 GMT"
],
"Pragma": [
"no-cache"
@@ -246,7 +246,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANt8=\""
+ "\"AAAAAAAAOJA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -258,16 +258,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3a396cf6-2cbb-45e6-aa90-be126ae40bfe"
+ "57483044-41b6-4f98-8ea9-7676ed718702"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14994"
],
"x-ms-correlation-request-id": [
- "937506f7-11f6-4382-a2d1-1886dd41b68d"
+ "977c5540-4716-4ceb-bc7a-db76b230deb8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035604Z:937506f7-11f6-4382-a2d1-1886dd41b68d"
+ "WESTUS2:20180309T194728Z:977c5540-4716-4ceb-bc7a-db76b230deb8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -288,14 +288,14 @@
"50"
],
"x-ms-client-request-id": [
- "33cdb10a-9f1f-4363-b939-9ff4e16eb940"
+ "e1e76a9b-63b5-462a-9677-bcd7c2aefd10"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signin\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signin\",\r\n \"properties\": {\r\n \"enabled\": false\r\n }\r\n}",
@@ -310,7 +310,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:04 GMT"
+ "Fri, 09 Mar 2018 19:47:27 GMT"
],
"Pragma": [
"no-cache"
@@ -319,7 +319,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANt4=\""
+ "\"AAAAAAAAOI8=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -331,16 +331,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f1a17620-06c3-4af2-b71e-711eaf7cbc75"
+ "a748a316-6288-4479-b4c7-fccdb8212c20"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1192"
],
"x-ms-correlation-request-id": [
- "ebfa8435-8724-455f-a68a-def878e5e903"
+ "c4b785c2-112f-4edf-b582-a95bc838d917"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035604Z:ebfa8435-8724-455f-a68a-def878e5e903"
+ "WESTUS2:20180309T194728Z:c4b785c2-112f-4edf-b582-a95bc838d917"
],
"X-Content-Type-Options": [
"nosniff"
@@ -355,14 +355,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbb47ecf-e248-45af-87b2-f04e947922ca"
+ "7544eeb2-a820-40de-abe0-dde1eda2d0c9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -377,13 +377,13 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:04 GMT"
+ "Fri, 09 Mar 2018 19:47:27 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANt4AAAAAAAAAAA==\""
+ "\"AAAAAAAAOI8AAAAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -392,16 +392,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df478521-205f-4244-8792-a42256a18efd"
+ "da162562-4285-4cb2-8952-caa0e8e638e9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14995"
],
"x-ms-correlation-request-id": [
- "9e9c74ce-d243-4bc8-af38-7b0b146b1222"
+ "718578c4-51d8-4ff3-928a-4b1812716f06"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035604Z:9e9c74ce-d243-4bc8-af38-7b0b146b1222"
+ "WESTUS2:20180309T194728Z:718578c4-51d8-4ff3-928a-4b1812716f06"
],
"X-Content-Type-Options": [
"nosniff"
@@ -422,17 +422,17 @@
"49"
],
"x-ms-client-request-id": [
- "1f1198b6-50fc-4447-a557-d27fb55e731d"
+ "368c0d00-eb95-4b73-9159-95853b915bb6"
],
"If-Match": [
- "\"AAAAAAAANt4AAAAAAAAAAA==\""
+ "\"AAAAAAAAOI8AAAAAAAAAAA==\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -444,7 +444,7 @@
"no-cache"
],
"Date": [
- "Mon, 05 Mar 2018 03:56:04 GMT"
+ "Fri, 09 Mar 2018 19:47:28 GMT"
],
"Pragma": [
"no-cache"
@@ -456,16 +456,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70d38ca7-d048-4f1c-9d27-af3396a7ae71"
+ "8e2a4eab-7cbd-46c6-b85b-a347dc463774"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1191"
],
"x-ms-correlation-request-id": [
- "2d9a820a-e38d-40d4-84d1-0416d8b85aab"
+ "de1faaed-403c-4cdc-9a96-ada40b8dab3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180305T035604Z:2d9a820a-e38d-40d4-84d1-0416d8b85aab"
+ "WESTUS2:20180309T194728Z:de1faaed-403c-4cdc-9a96-ada40b8dab3c"
],
"X-Content-Type-Options": [
"nosniff"
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignUpSettingTests/CreateUpdateReset.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignUpSettingTests/CreateUpdateReset.json
index 1a3ff88dd4268..a6fb61ed62e6e 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignUpSettingTests/CreateUpdateReset.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SignUpSettingTests/CreateUpdateReset.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "2acee729-7a87-4c10-9296-e6213a016c7e"
+ "458ec348-8fbf-4e4c-8701-89f6cbc6920a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:49 GMT"
+ "Fri, 09 Mar 2018 19:46:59 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,17 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a5895770-93a5-41ef-b9b9-9d9ae16a49fb",
- "1467f222-fd3e-41f0-aac3-f3cabd3017da"
+ "2472351e-787e-4b87-abbe-9f40c2113850",
+ "458af46e-f8e4-4f72-9e42-3ac24111ccc2"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "46fc6d30-a723-48c0-98b8-a4d32c62280a"
+ "65ec0845-4fed-498a-80cf-bae869dcdcfe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202150Z:46fc6d30-a723-48c0-98b8-a4d32c62280a"
+ "WESTUS2:20180309T194700Z:65ec0845-4fed-498a-80cf-bae869dcdcfe"
],
"X-Content-Type-Options": [
"nosniff"
@@ -81,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "04dd3346-0d59-486c-8cff-de5eb486d3f4"
+ "7f4790e3-3c8d-428f-8213-190a44c1abf1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADeFjQ=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -103,7 +103,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:49 GMT"
+ "Fri, 09 Mar 2018 19:47:00 GMT"
],
"Pragma": [
"no-cache"
@@ -112,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADeFjQ=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -124,16 +124,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "57038f0c-a28a-451d-8b2e-359eb4de85cd"
+ "c40844fa-14f9-407b-b10b-be4acfcccbaf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "0a2fb21e-336c-4a54-8cc2-ad34d7f236df"
+ "df66df42-9ef2-4322-9173-3b41db0b75a0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202150Z:0a2fb21e-336c-4a54-8cc2-ad34d7f236df"
+ "WESTUS2:20180309T194700Z:df66df42-9ef2-4322-9173-3b41db0b75a0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -148,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91d7322d-293c-4739-9ffd-034c9088f50c"
+ "74773041-547b-49c4-9b04-71594a8ffe77"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signup\",\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"text\": null,\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}",
@@ -170,7 +170,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:50 GMT"
+ "Fri, 09 Mar 2018 19:47:00 GMT"
],
"Pragma": [
"no-cache"
@@ -179,7 +179,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAfoNtGQAAAAAAAA==\""
+ "\"AAAAAAAAvpGX5gAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -191,16 +191,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "80ab82e4-1e44-444c-8d8d-55dcb1602901"
+ "bae1b065-3a6c-4535-a4df-e9c42324220c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "092f96bb-c4a0-4fa8-8072-23c5d36b31a1"
+ "2cc74a09-c679-4377-a891-04eb4cab6633"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202150Z:092f96bb-c4a0-4fa8-8072-23c5d36b31a1"
+ "WESTUS2:20180309T194701Z:2cc74a09-c679-4377-a891-04eb4cab6633"
],
"X-Content-Type-Options": [
"nosniff"
@@ -215,14 +215,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab2f9e87-131c-41a2-8637-d2c8b4571c1d"
+ "620c9336-7e97-4fbb-9ddf-9d5db35ad773"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -237,13 +237,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:50 GMT"
+ "Fri, 09 Mar 2018 19:47:00 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAfoNtGQAAAAAAAA==\""
+ "\"AAAAAAAAvpGX5gAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,16 +252,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a9d114ae-2f5f-4fac-b28d-93da5daaf30b"
+ "1bf79036-8d98-4570-8497-f2bb2bdd512c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "745f161a-179f-4137-a7b8-61ac6f6c8c4b"
+ "a0bfd07a-19a2-4ba0-8a89-438bdd303229"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202151Z:745f161a-179f-4137-a7b8-61ac6f6c8c4b"
+ "WESTUS2:20180309T194701Z:a0bfd07a-19a2-4ba0-8a89-438bdd303229"
],
"X-Content-Type-Options": [
"nosniff"
@@ -276,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8cb7c84-dbfe-4567-87b9-c2c32744a7a3"
+ "78cd25df-fdfa-4fcb-b4cd-65f753d21ea5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -298,13 +298,13 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:50 GMT"
+ "Fri, 09 Mar 2018 19:47:01 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAAfoNtGQAAAAAAAA==\""
+ "\"AAAAAAAAfjGR5gAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,16 +313,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7c284d2a-b3a2-4cff-bf1a-2a196bceec83"
+ "9c076086-bb76-408b-9e40-d1df49616317"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "d5ef0774-6b80-430c-9656-dd25221ed01a"
+ "8bd53d77-00fb-4f4c-abfd-31920def31af"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202151Z:d5ef0774-6b80-430c-9656-dd25221ed01a"
+ "WESTUS2:20180309T194702Z:8bd53d77-00fb-4f4c-abfd-31920def31af"
],
"X-Content-Type-Options": [
"nosniff"
@@ -343,14 +343,14 @@
"140"
],
"x-ms-client-request-id": [
- "6b4b679e-f6ae-4ced-ba79-551f1bdb9d2c"
+ "b5d141ec-bbe7-4d69-82c6-c8b8cbd92f01"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/portalsettings/signup\",\r\n \"type\": \"Microsoft.ApiManagement/service/portalsettings\",\r\n \"name\": \"signup\",\r\n \"properties\": {\r\n \"enabled\": false,\r\n \"termsOfService\": {\r\n \"text\": null,\r\n \"enabled\": false,\r\n \"consentRequired\": false\r\n }\r\n }\r\n}",
@@ -365,7 +365,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:50 GMT"
+ "Fri, 09 Mar 2018 19:47:01 GMT"
],
"Pragma": [
"no-cache"
@@ -374,7 +374,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAfoNtGQAAAAAAAA==\""
+ "\"AAAAAAAAfjGR5gAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -386,16 +386,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bdb83475-d3d5-4ff6-bcba-ce29def28505"
+ "1853d8e7-2a22-4cb7-9132-08efdddb3de2"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "79945978-89e4-476a-817d-8d4a626c04bb"
+ "03694bf8-08b6-4c1a-86b0-f9976d93a4be"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202151Z:79945978-89e4-476a-817d-8d4a626c04bb"
+ "WESTUS2:20180309T194701Z:03694bf8-08b6-4c1a-86b0-f9976d93a4be"
],
"X-Content-Type-Options": [
"nosniff"
@@ -416,17 +416,17 @@
"140"
],
"x-ms-client-request-id": [
- "647354f3-460c-4110-bf70-8d93a7815601"
+ "2c895b30-1f5c-4378-90a4-9205556f9eaf"
],
"If-Match": [
- "\"AAAAAAAAfoNtGQAAAAAAAA==\""
+ "\"AAAAAAAAfjGR5gAAAAAAAA==\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -438,7 +438,7 @@
"no-cache"
],
"Date": [
- "Sun, 04 Mar 2018 20:21:51 GMT"
+ "Fri, 09 Mar 2018 19:47:01 GMT"
],
"Pragma": [
"no-cache"
@@ -450,16 +450,16 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "75c709da-c3d1-481e-8df3-fb08dae42513"
+ "af8e435b-d3ce-4172-9e9f-78b4ace92069"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "fc294b00-191a-4a66-8bdc-c4d04b05f43e"
+ "d1074dbd-abc4-4ebf-861a-a2a5e4c78f45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180304T202151Z:fc294b00-191a-4a66-8bdc-c4d04b05f43e"
+ "WESTUS2:20180309T194702Z:d1074dbd-abc4-4ebf-861a-a2a5e4c78f45"
],
"X-Content-Type-Options": [
"nosniff"
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SubscriptionTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SubscriptionTests/CreateListUpdateDelete.json
index 090a071a02fc9..ed4749c068fd4 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SubscriptionTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.SubscriptionTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "c908a2e7-48d5-45c9-8e96-72fc43539682"
+ "f677942c-d886-4232-9a25-b18bbd1c8515"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:46 GMT"
+ "Fri, 09 Mar 2018 19:48:25 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3da4d45b-dae9-4e17-8b95-a7abad2ed832",
- "d7dcf4fa-4d63-43cd-8e96-79bee6769f8b"
+ "a56519c1-68f9-4b90-9c64-515bedabf6a4",
+ "ea404ed5-a205-4a29-9c41-4946ad8b6617"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1186"
+ "1198"
],
"x-ms-correlation-request-id": [
- "15032cae-9a69-4b0b-abd6-5d57d56a7fb3"
+ "fe5d07d3-2d04-4439-8af4-1f988063f7db"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235947Z:15032cae-9a69-4b0b-abd6-5d57d56a7fb3"
+ "WESTUS2:20180309T194826Z:fe5d07d3-2d04-4439-8af4-1f988063f7db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e270617-3276-49d1-811f-3c838eb11e4b"
+ "40d7619e-b69a-4791-ab5c-da065397aad5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:46 GMT"
+ "Fri, 09 Mar 2018 19:48:25 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e4a0e5b-ee6d-434e-9f59-3bb0c0968a19"
+ "671450e5-0c9d-4701-be89-70848592e7a3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14910"
+ "14996"
],
"x-ms-correlation-request-id": [
- "943ac345-9d33-4222-8af1-d39074e8f7e0"
+ "a6233aeb-fd80-49f5-8dbb-bbb01a56dd10"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235947Z:943ac345-9d33-4222-8af1-d39074e8f7e0"
+ "WESTUS2:20180309T194826Z:a6233aeb-fd80-49f5-8dbb-bbb01a56dd10"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d64f22f-94c9-45aa-be4e-88606cc415d4"
+ "07ff8627-6cf1-4c89-9873-93dcdfbdad00"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070002\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"secondaryKey\": \"088c12c96e8e4d5198a09c426f134bd0\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:46 GMT"
+ "Fri, 09 Mar 2018 19:48:26 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "47d14df4-2c5a-43cf-9de0-bcb6ce03a5e2"
+ "cc2b9c7a-60f7-4c3d-b25f-827c96e86f00"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14909"
+ "14995"
],
"x-ms-correlation-request-id": [
- "d85655fb-fb9b-4b83-b9be-a96191795287"
+ "9d9d0acf-654e-4137-a950-e76c1614da7e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235947Z:d85655fb-fb9b-4b83-b9be-a96191795287"
+ "WESTUS2:20180309T194826Z:9d9d0acf-654e-4137-a950-e76c1614da7e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "159aed5c-2ee4-439b-befc-5ca0e7b624e7"
+ "64fb3828-c255-4e87-858a-712414b61e90"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:46 GMT"
+ "Fri, 09 Mar 2018 19:48:26 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2bed7118-ab79-431a-a8f0-35da1dbc70e7"
+ "a0fa9765-efec-4211-8baf-e9d3d9d475fc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14908"
+ "14994"
],
"x-ms-correlation-request-id": [
- "2bafb93b-b128-491b-a9fc-2b06b9792abe"
+ "938bc4da-12f6-43b5-85c9-ddccdd1dee5f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235947Z:2bafb93b-b128-491b-a9fc-2b06b9792abe"
+ "WESTUS2:20180309T194827Z:938bc4da-12f6-43b5-85c9-ddccdd1dee5f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ac2ae005-bf1b-4ac9-a657-79d50fc3db6c"
+ "669e1705-3120-4198-a5fd-e08cd7d0e039"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null\r\n }\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:46 GMT"
+ "Fri, 09 Mar 2018 19:48:26 GMT"
],
"Pragma": [
"no-cache"
@@ -307,16 +319,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "67256209-0873-445c-b8b3-76a89f34405c"
+ "2e1774ac-1656-494c-9314-dc9011b9a661"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14907"
+ "14993"
],
"x-ms-correlation-request-id": [
- "6362e8cc-b418-4ec1-bec9-48a4ee94514f"
+ "711d09af-e3e8-4ef7-9761-4fe4c92958f5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235947Z:6362e8cc-b418-4ec1-bec9-48a4ee94514f"
+ "WESTUS2:20180309T194827Z:711d09af-e3e8-4ef7-9761-4fe4c92958f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -334,7 +349,7 @@
"66"
],
"x-ms-client-request-id": [
- "955c92df-d853-4047-b98e-c59a86204e9e"
+ "6cd67e28-6bcb-4232-be2b-bf4881f1223a"
],
"If-Match": [
"*"
@@ -344,7 +359,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -356,7 +371,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:47 GMT"
+ "Fri, 09 Mar 2018 19:48:27 GMT"
],
"Pragma": [
"no-cache"
@@ -368,25 +383,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fe6a6cb7-b573-47bf-8249-fa6034003577"
+ "253c469d-d07c-4efe-9cf7-3d576966e9b7"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1185"
+ "1197"
],
"x-ms-correlation-request-id": [
- "64566f36-538d-4526-a9af-03d05fe19cbc"
+ "12f6ca4a-4b0b-4b01-8c28-62d2b878ca06"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235948Z:64566f36-538d-4526-a9af-03d05fe19cbc"
+ "WESTUS2:20180309T194828Z:12f6ca4a-4b0b-4b01-8c28-62d2b878ca06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName9711\",\r\n \"primaryKey\": \"newSubscriptionPK1622\",\r\n \"secondaryKey\": \"newSubscriptionSK7953\",\r\n \"state\": \"active\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName5146\",\r\n \"primaryKey\": \"newSubscriptionPK7992\",\r\n \"secondaryKey\": \"newSubscriptionSK8546\",\r\n \"state\": \"active\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -395,20 +413,20 @@
"544"
],
"x-ms-client-request-id": [
- "ef672c2e-eb82-4c93-b2de-562918751be5"
+ "269fc157-9357-4cbd-83a1-627e321412a0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId1786\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName9711\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-02-19T23:59:40.210229Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK1622\",\r\n \"secondaryKey\": \"newSubscriptionSK7953\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId6064\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"user\": {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"groups\": [],\r\n \"identities\": []\r\n },\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName5146\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-03-09T19:48:28.3035737Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK7992\",\r\n \"secondaryKey\": \"newSubscriptionSK8546\",\r\n \"stateComment\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1458"
+ "1459"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -420,13 +438,13 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:48 GMT"
+ "Fri, 09 Mar 2018 19:48:28 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANBo=\""
+ "\"AAAAAAAAOJU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,38 +453,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "243d4fce-0d61-46ed-a173-47c5b8677594"
+ "e6acd935-affc-4f32-9c8c-6a6bc46d8f46"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1184"
+ "1196"
],
"x-ms-correlation-request-id": [
- "3efd717f-22b6-4e75-a896-6cf24e4154a8"
+ "c974b0b6-54a3-455f-8627-7ac79abae37b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235948Z:3efd717f-22b6-4e75-a896-6cf24e4154a8"
+ "WESTUS2:20180309T194829Z:c974b0b6-54a3-455f-8627-7ac79abae37b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4789d065-d8b8-497d-ad80-c6d055ebedb1"
+ "3f13fb0b-117b-4dc3-9072-53716aa0f90c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId1786\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName9711\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-02-19T23:59:40.21Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK1622\",\r\n \"secondaryKey\": \"newSubscriptionSK7953\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId6064\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"newSubscriptionName5146\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-03-09T19:48:28.303Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"newSubscriptionPK7992\",\r\n \"secondaryKey\": \"newSubscriptionSK8546\",\r\n \"stateComment\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -478,7 +499,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:48 GMT"
+ "Fri, 09 Mar 2018 19:48:28 GMT"
],
"Pragma": [
"no-cache"
@@ -487,7 +508,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANBo=\""
+ "\"AAAAAAAAOJU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -499,38 +520,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "19cdcc53-d74f-49ff-b0dc-6e0d724701dc"
+ "baa50fd3-8dc1-40ff-82cd-09085106519c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14906"
+ "14992"
],
"x-ms-correlation-request-id": [
- "675fc4a6-618e-4b72-95cd-796de5c19ef9"
+ "eb91a234-4e79-476f-af9e-e74f16a2181c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235949Z:675fc4a6-618e-4b72-95cd-796de5c19ef9"
+ "WESTUS2:20180309T194829Z:eb91a234-4e79-476f-af9e-e74f16a2181c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cb0843dd-1354-4c33-880a-f9899c24d158"
+ "b8dd9958-fe6c-4084-84d7-72ba813a4a76"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId1786\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName6811\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-02-19T23:59:40.21Z\",\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 \"primaryKey\": \"patchedPk5124\",\r\n \"secondaryKey\": \"patchedSk5655\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId6064\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName74\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-03-09T19:48:28.303Z\",\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 \"primaryKey\": \"patchedPk5587\",\r\n \"secondaryKey\": \"patchedSk2578\",\r\n \"stateComment\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -542,7 +566,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:48 GMT"
+ "Fri, 09 Mar 2018 19:48:29 GMT"
],
"Pragma": [
"no-cache"
@@ -551,7 +575,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANB4=\""
+ "\"AAAAAAAAOJk=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -563,38 +587,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2dba44f-5836-49df-9f8c-9ee411f2bee2"
+ "84fcbf26-4546-4541-914e-c35ab633eb69"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14905"
+ "14991"
],
"x-ms-correlation-request-id": [
- "6fd49729-f8ac-4988-b73c-5046cf0c2e24"
+ "7fc90d95-393d-4065-9524-ac94c5cc862b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235949Z:6fd49729-f8ac-4988-b73c-5046cf0c2e24"
+ "WESTUS2:20180309T194830Z:7fc90d95-393d-4065-9524-ac94c5cc862b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8687cd63-38bc-43ac-8d84-b2ea11b49b92"
+ "bf950d6c-1e8a-4b41-a2de-7a838e3e4a28"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId1786\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName6811\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-02-19T23:59:40.21Z\",\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 \"primaryKey\": \"572bd2e7f3924437b32ed4610e49c04e\",\r\n \"secondaryKey\": \"patchedSk5655\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId6064\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName74\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-03-09T19:48:28.303Z\",\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 \"primaryKey\": \"acc0ce8b890b47779676d9080fd6dacb\",\r\n \"secondaryKey\": \"patchedSk2578\",\r\n \"stateComment\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -606,7 +633,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:48 GMT"
+ "Fri, 09 Mar 2018 19:48:29 GMT"
],
"Pragma": [
"no-cache"
@@ -615,7 +642,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANCI=\""
+ "\"AAAAAAAAOJ0=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -627,38 +654,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1c449f55-c28a-4ca0-8c56-9a81351bc779"
+ "3137a1a6-da65-495b-8847-db21f11f6500"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14904"
+ "14990"
],
"x-ms-correlation-request-id": [
- "a13ea56c-35c7-43c5-8fab-7bee2f59892f"
+ "ecd5b613-4f6a-4d95-bef6-7a0dee4a69b1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235949Z:a13ea56c-35c7-43c5-8fab-7bee2f59892f"
+ "WESTUS2:20180309T194830Z:ecd5b613-4f6a-4d95-bef6-7a0dee4a69b1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b17021a-8baf-4550-b167-f0439aef774b"
+ "0a88d3e6-6694-4edd-8569-9611a7a1fc86"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId1786\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName6811\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-02-19T23:59:40.21Z\",\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 \"primaryKey\": \"572bd2e7f3924437b32ed4610e49c04e\",\r\n \"secondaryKey\": \"479852808830448f89695f385666f691\",\r\n \"stateComment\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064\",\r\n \"type\": \"Microsoft.ApiManagement/service/subscriptions\",\r\n \"name\": \"newSubscriptionId6064\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": \"patchedName74\",\r\n \"state\": \"active\",\r\n \"createdDate\": \"2018-03-09T19:48:28.303Z\",\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 \"primaryKey\": \"acc0ce8b890b47779676d9080fd6dacb\",\r\n \"secondaryKey\": \"68f1e3037a7745698378c5e578995947\",\r\n \"stateComment\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -670,7 +700,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:49 GMT"
+ "Fri, 09 Mar 2018 19:48:30 GMT"
],
"Pragma": [
"no-cache"
@@ -679,7 +709,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANCY=\""
+ "\"AAAAAAAAOKE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -691,35 +721,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "92d624de-d21b-41e8-aea0-c7b84dfa3ca9"
+ "174fcb93-0661-4195-a030-6eb815088429"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14903"
+ "14989"
],
"x-ms-correlation-request-id": [
- "16958e0e-ba58-41b7-b6ee-613f4facaf9a"
+ "47e5e529-b415-48eb-b6f6-201415eaa326"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235950Z:16958e0e-ba58-41b7-b6ee-613f4facaf9a"
+ "WESTUS2:20180309T194831Z:47e5e529-b415-48eb-b6f6-201415eaa326"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69d2c451-92e2-4e4f-9d3c-cbf43c6baeb6"
+ "396ec91e-995d-4ba0-b415-34fb425006b1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Subscription not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -737,7 +770,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:49 GMT"
+ "Fri, 09 Mar 2018 19:48:30 GMT"
],
"Pragma": [
"no-cache"
@@ -749,44 +782,47 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "775740dd-5875-44ca-8a59-ece617beb8ac"
+ "cd625eb2-29f8-449a-853c-d2191e90d09c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14902"
+ "14988"
],
"x-ms-correlation-request-id": [
- "fd872b92-1997-4718-aaa2-c550a1272c49"
+ "4f2472d3-0e3d-48f1-b069-5f07319edbd5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235950Z:fd872b92-1997-4718-aaa2-c550a1272c49"
+ "WESTUS2:20180309T194831Z:4f2472d3-0e3d-48f1-b069-5f07319edbd5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"patchedName6811\",\r\n \"primaryKey\": \"patchedPk5124\",\r\n \"secondaryKey\": \"patchedSk5655\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"expirationDate\": \"2025-07-20T00:00:00Z\",\r\n \"displayName\": \"patchedName74\",\r\n \"primaryKey\": \"patchedPk5587\",\r\n \"secondaryKey\": \"patchedSk2578\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "187"
+ "185"
],
"x-ms-client-request-id": [
- "43028199-1c7b-4906-98bd-4b92a4777f37"
+ "bd4f6eb6-39b8-46f5-b342-5ccc68ebef58"
],
"If-Match": [
- "\"AAAAAAAANBo=\""
+ "\"AAAAAAAAOJU=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -798,7 +834,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:48 GMT"
+ "Fri, 09 Mar 2018 19:48:29 GMT"
],
"Pragma": [
"no-cache"
@@ -810,35 +846,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7d269863-3eea-41de-95c3-d807a30bb08b"
+ "6b73e246-86ec-495f-ba31-60a63b682436"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1183"
+ "1195"
],
"x-ms-correlation-request-id": [
- "5d16c5cd-af05-480f-abc2-ac08f6570ec0"
+ "ff37153a-aec8-4426-abea-863c7fd1a299"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235949Z:5d16c5cd-af05-480f-abc2-ac08f6570ec0"
+ "WESTUS2:20180309T194830Z:ff37153a-aec8-4426-abea-863c7fd1a299"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786/regeneratePrimaryKey?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Ni9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064/regeneratePrimaryKey?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2NC9yZWdlbmVyYXRlUHJpbWFyeUtleT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e913cda5-d134-4b3b-a978-7263c64f4ab3"
+ "e19f4ab8-2d34-4527-bc53-a2f858936a17"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -850,7 +889,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:48 GMT"
+ "Fri, 09 Mar 2018 19:48:29 GMT"
],
"Pragma": [
"no-cache"
@@ -862,35 +901,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a905b998-6d4a-45c3-bca5-0771631c1672"
+ "a7b16e51-4b47-4abf-bbd4-6aaeffc5a584"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1182"
+ "1194"
],
"x-ms-correlation-request-id": [
- "20ee0cd4-c1a3-4d0e-b838-6b0bbda70dd2"
+ "3592a6d6-8e01-4761-80f0-0d98260695e8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235949Z:20ee0cd4-c1a3-4d0e-b838-6b0bbda70dd2"
+ "WESTUS2:20180309T194830Z:3592a6d6-8e01-4761-80f0-0d98260695e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786/regenerateSecondaryKey?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Ni9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064/regenerateSecondaryKey?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2NC9yZWdlbmVyYXRlU2Vjb25kYXJ5S2V5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3705db00-76a6-44d7-a8de-4552c44cf87d"
+ "eada4264-6b51-4e82-9539-97b598e58f9a"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -902,7 +944,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:49 GMT"
+ "Fri, 09 Mar 2018 19:48:30 GMT"
],
"Pragma": [
"no-cache"
@@ -914,38 +956,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f30acb06-da8d-4bf8-9fc0-98f5a393e66a"
+ "9f07aa88-a6a0-4cae-9017-d893ee0d6260"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1181"
+ "1193"
],
"x-ms-correlation-request-id": [
- "9af6340d-1aec-4fa2-9483-9dd5e2b4b074"
+ "7f24f446-4615-4f28-b7dc-fa4c178b585d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235950Z:9af6340d-1aec-4fa2-9483-9dd5e2b4b074"
+ "WESTUS2:20180309T194831Z:7f24f446-4615-4f28-b7dc-fa4c178b585d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e55e54e-0460-4e14-84e8-31399de9c66b"
+ "7e9adc36-43a3-4a77-ab1c-1854cda5b402"
],
"If-Match": [
- "\"AAAAAAAANCY=\""
+ "\"AAAAAAAAOKE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -960,7 +1005,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:49 GMT"
+ "Fri, 09 Mar 2018 19:48:30 GMT"
],
"Pragma": [
"no-cache"
@@ -972,28 +1017,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d04268d6-50a1-4026-bae8-0be39dc93e0b"
+ "35a87c9f-4d9b-42f7-b374-63796654e00b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1180"
+ "1192"
],
"x-ms-correlation-request-id": [
- "baf87a0b-25aa-485b-a58d-ea85dd8b8521"
+ "49eaa904-0586-4b12-b83d-02464f73cea8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235950Z:baf87a0b-25aa-485b-a58d-ea85dd8b8521"
+ "WESTUS2:20180309T194831Z:49eaa904-0586-4b12-b83d-02464f73cea8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId1786?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkMTc4Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/subscriptions/newSubscriptionId6064?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9zdWJzY3JpcHRpb25zL25ld1N1YnNjcmlwdGlvbklkNjA2ND9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b14399ca-d8fe-4318-9b7c-7e9670c18f27"
+ "dee6bab3-0a84-41bc-8e09-83d5ae7ac72a"
],
"If-Match": [
"*"
@@ -1003,7 +1051,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1015,7 +1063,7 @@
"no-cache"
],
"Date": [
- "Mon, 19 Feb 2018 23:59:49 GMT"
+ "Fri, 09 Mar 2018 19:48:31 GMT"
],
"Pragma": [
"no-cache"
@@ -1027,16 +1075,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "566b478f-a346-413f-8d2c-b858ae79d8e1"
+ "b4550999-9a3f-4552-a892-b358ee4b9c67"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1179"
+ "1191"
],
"x-ms-correlation-request-id": [
- "15504728-3175-4a3f-b879-79ab0580ade9"
+ "eff2333b-6747-4d10-b451-6b6f76fcc821"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180219T235950Z:15504728-3175-4a3f-b879-79ab0580ade9"
+ "WESTUS2:20180309T194832Z:eff2333b-6747-4d10-b451-6b6f76fcc821"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -1044,13 +1095,13 @@
],
"Names": {
"CreateListUpdateDelete": [
- "newSubscriptionId1786",
- "newSubscriptionName9711",
- "newSubscriptionPK1622",
- "newSubscriptionSK7953",
- "patchedName6811",
- "patchedPk5124",
- "patchedSk5655"
+ "newSubscriptionId6064",
+ "newSubscriptionName5146",
+ "newSubscriptionPK7992",
+ "newSubscriptionSK8546",
+ "patchedName74",
+ "patchedPk5587",
+ "patchedSk2578"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagDescriptionTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagDescriptionTests/CreateListUpdateDelete.json
index 0d206cd8f0ba5..a4e1cb29d87a2 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagDescriptionTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagDescriptionTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "6d70a5f4-67f8-442c-b08b-72bc574bc3cd"
+ "233cc174-7a31-4ea8-b51e-a2b76cf3a911"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:54:50 GMT"
+ "Fri, 09 Mar 2018 19:52:09 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "42b2e684-84a3-40db-9516-5658e21c4dd2",
- "d17047f8-5a78-4e1b-b7a0-615e58b99145"
+ "8d3f6ac8-7939-4d4b-8033-adebe091a159",
+ "779a4a96-9ea7-4e45-9840-87f6ab9d9534"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1194"
],
"x-ms-correlation-request-id": [
- "174c1a63-4655-422c-b97a-96c1ae0ab6d8"
+ "f0df03d7-2f8a-4d6c-97e0-85f26dc3694f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235451Z:174c1a63-4655-422c-b97a-96c1ae0ab6d8"
+ "WESTUS2:20180309T195209Z:f0df03d7-2f8a-4d6c-97e0-85f26dc3694f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bb1cf184-735c-43f1-886d-5c54e6473ec4"
+ "182a6385-dd3d-45ad-8429-816c998772e7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:54:51 GMT"
+ "Fri, 09 Mar 2018 19:52:09 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "84351c4f-9ee8-4b2a-8cad-8d543559cadb"
+ "b7ab28d1-ab7f-41f0-9213-d8e72b8b7cfe"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14987"
],
"x-ms-correlation-request-id": [
- "04c89ea4-32d2-41ae-94c6-5a11a205894a"
+ "902e71c7-4eb0-44a0-8425-9c7d9c2091ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235451Z:04c89ea4-32d2-41ae-94c6-5a11a205894a"
+ "WESTUS2:20180309T195210Z:902e71c7-4eb0-44a0-8425-9c7d9c2091ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4f435a1-6e37-4256-9adb-f29a6d5d745c"
+ "1885f85b-06e2-480c-bdf9-25db2ec67f96"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"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 \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:54:51 GMT"
+ "Fri, 09 Mar 2018 19:52:09 GMT"
],
"Pragma": [
"no-cache"
@@ -182,47 +188,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e87fc3e9-222d-48a9-a9ce-8b219f465f3c"
+ "856b7c08-ca18-4b43-8985-cf3bb78cb17b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14986"
],
"x-ms-correlation-request-id": [
- "873833db-a975-4cf8-9031-a77430c6031c"
+ "92e6621c-a6ce-458d-8102-9433aa19414d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235451Z:873833db-a975-4cf8-9031-a77430c6031c"
+ "WESTUS2:20180309T195210Z:92e6621c-a6ce-458d-8102-9433aa19414d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMzNjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI3NTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag5638\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag551\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "61"
+ "60"
],
"x-ms-client-request-id": [
- "00d121fe-c0e1-41f5-9cb8-ebc022408c90"
+ "e573d3e7-dd76-4885-aa37-a848def96d1b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag3361\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5638\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag2756\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag551\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "311"
+ "310"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -234,13 +243,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:55:00 GMT"
+ "Fri, 09 Mar 2018 19:52:10 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,41 +258,44 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4c5d3c04-fbcb-46f4-a339-ed23df402cd4"
+ "c7528ff6-743f-47c3-9631-1119763b8cbe"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1193"
],
"x-ms-correlation-request-id": [
- "fafee16f-9654-4a5b-a6ca-79aa0bca9d96"
+ "582a6438-2e65-4621-997b-eefafa056b3e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235501Z:fafee16f-9654-4a5b-a6ca-79aa0bca9d96"
+ "WESTUS2:20180309T195211Z:582a6438-2e65-4621-997b-eefafa056b3e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzM2MT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjc1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c1d3a556-9f07-47da-a6d8-c927ba9436f9"
+ "81a0d0b3-935b-44bf-8afc-93904dd8685e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3361\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag3361\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5638\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag2756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag2756\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag551\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "330"
+ "329"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -295,13 +307,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:55:04 GMT"
+ "Fri, 09 Mar 2018 19:52:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -310,16 +322,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "742b06be-fa68-437c-b9b4-93f4e4d30e89"
+ "0167df72-6648-4cf9-a520-fa8407b4bb12"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1192"
],
"x-ms-correlation-request-id": [
- "13768586-83f1-4dee-8c5e-6deb70a590ca"
+ "8999b79f-2c80-4b7f-bc47-dfcd41268fee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235504Z:13768586-83f1-4dee-8c5e-6deb70a590ca"
+ "WESTUS2:20180309T195211Z:8999b79f-2c80-4b7f-bc47-dfcd41268fee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -331,14 +346,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca8a7a7b-81a4-4043-9f13-80cabdab3ce6"
+ "b89035d8-0522-438d-9cef-0421a5eea6f6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -353,7 +368,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:55:07 GMT"
+ "Fri, 09 Mar 2018 19:52:11 GMT"
],
"Pragma": [
"no-cache"
@@ -371,25 +386,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dfcb0c91-ad51-4281-9fb4-6a10c9c8adfa"
+ "61763a34-39a4-45c9-b591-4de58a83688f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14985"
],
"x-ms-correlation-request-id": [
- "f2a5be3a-692c-4e8f-8663-5670fd6f349e"
+ "41bb6cad-212b-4833-984b-a8842d85159f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235507Z:f2a5be3a-692c-4e8f-8663-5670fd6f349e"
+ "WESTUS2:20180309T195211Z:41bb6cad-212b-4833-984b-a8842d85159f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWczMzYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWcyNzU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"somedescription2122\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"somedescription2153\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -398,20 +416,20 @@
"120"
],
"x-ms-client-request-id": [
- "26f2c2e5-bcf1-4199-b66a-af8eb041f476"
+ "2b18f77e-425e-4b80-acba-4a25e0ff9b4d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag3361\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5638\",\r\n \"description\": \"somedescription2122\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag2756\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag551\",\r\n \"description\": \"somedescription2153\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "458"
+ "457"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -423,13 +441,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:55:39 GMT"
+ "Fri, 09 Mar 2018 19:52:12 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -438,25 +456,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "249ddf38-c36a-48ef-aaff-0c9e09e474f4"
+ "9a177ea8-6134-4fbb-a59e-5c34a7f3f44a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1191"
],
"x-ms-correlation-request-id": [
- "c0dd278e-2197-483f-954a-e86f9e93155a"
+ "1514b858-b6a8-4970-8bd8-8da1046ccf5a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235539Z:c0dd278e-2197-483f-954a-e86f9e93155a"
+ "WESTUS2:20180309T195212Z:1514b858-b6a8-4970-8bd8-8da1046ccf5a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWczMzYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWcyNzU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"tag_update4479\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"tag_update5960\",\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -465,20 +486,20 @@
"115"
],
"x-ms-client-request-id": [
- "0ba9b80c-980a-4239-8b03-cfffaa75a0ed"
+ "21a407f9-5a48-41cb-8c88-b3ed0783679e"
],
"If-Match": [
- "\"AAAAAAAANZk=\""
+ "\"AAAAAAAAONY=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag3361\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5638\",\r\n \"description\": \"tag_update4479\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tagDescriptions\",\r\n \"name\": \"apiTag2756\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag551\",\r\n \"description\": \"tag_update5960\",\r\n \"externalDocsDescription\": null,\r\n \"externalDocsUrl\": \"http://somelog.content\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -490,7 +511,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:56:27 GMT"
+ "Fri, 09 Mar 2018 19:52:12 GMT"
],
"Pragma": [
"no-cache"
@@ -499,7 +520,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -511,35 +532,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8832a63-b4f9-4bf9-a70e-c5763404ef97"
+ "c6c98e6e-15b2-4dc4-9aa8-77580e147ada"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1190"
],
"x-ms-correlation-request-id": [
- "d8a2080c-c35c-439e-9016-35ea71c038ba"
+ "e41a971f-40a5-4dc2-8ccf-cb26d167dbe9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235627Z:d8a2080c-c35c-439e-9016-35ea71c038ba"
+ "WESTUS2:20180309T195212Z:e41a971f-40a5-4dc2-8ccf-cb26d167dbe9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWczMzYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWcyNzU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58f13a27-7d04-4e56-a5aa-335d8c36f624"
+ "73387515-5a41-40c8-ab8c-bfeafa4028de"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -554,13 +578,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:56:07 GMT"
+ "Fri, 09 Mar 2018 19:52:12 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZk=\""
+ "\"AAAAAAAAONY=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -569,35 +593,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "604700ef-43b0-43c6-b7aa-d17f7a20bbbb"
+ "c33bef23-f30e-486d-98b3-ebf701bd412a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14984"
],
"x-ms-correlation-request-id": [
- "4aaa8f01-0e74-4cc7-b328-f61de2b74f00"
+ "4bd77a1f-aad2-4a45-82e1-c28a26709f14"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235607Z:4aaa8f01-0e74-4cc7-b328-f61de2b74f00"
+ "WESTUS2:20180309T195212Z:4bd77a1f-aad2-4a45-82e1-c28a26709f14"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWczMzYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWcyNzU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7fe3116-54ff-4313-a801-599650879957"
+ "e74d7ec8-1f88-4a8d-aa03-0b35299d218f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -612,13 +639,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:57:01 GMT"
+ "Fri, 09 Mar 2018 19:52:12 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZo=\""
+ "\"AAAAAAAAONc=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -627,38 +654,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ef6ec86-4619-4b04-acb5-cb4001a6dff9"
+ "1ae9b73e-22cb-453e-a2ed-0d071d862873"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14983"
],
"x-ms-correlation-request-id": [
- "9c6c6456-3709-429a-91e9-79a9bb7d9c49"
+ "027cc067-d074-40c4-b9de-194f5d98483a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235701Z:9c6c6456-3709-429a-91e9-79a9bb7d9c49"
+ "WESTUS2:20180309T195213Z:027cc067-d074-40c4-b9de-194f5d98483a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWczMzYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWcyNzU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5cb15bad-bc74-4967-8191-b6d1d74f407a"
+ "2c8440f3-ccc5-44a3-b11f-405e99cb7c75"
],
"If-Match": [
- "\"AAAAAAAANZo=\""
+ "\"AAAAAAAAONc=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -673,7 +703,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:57:40 GMT"
+ "Fri, 09 Mar 2018 19:52:13 GMT"
],
"Pragma": [
"no-cache"
@@ -685,28 +715,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5aeee03a-83af-418a-8694-8a4d9add9ba5"
+ "b45f2663-24dd-4bcd-bd2e-9bc2ba5a18f5"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1189"
],
"x-ms-correlation-request-id": [
- "d2098bfb-7b38-49e1-8fcd-160aab77102e"
+ "b716b934-c7a1-4f84-b8f1-2ff4ff9e0cc8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235740Z:d2098bfb-7b38-49e1-8fcd-160aab77102e"
+ "WESTUS2:20180309T195213Z:b716b934-c7a1-4f84-b8f1-2ff4ff9e0cc8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWczMzYxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tagDescriptions/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ0Rlc2NyaXB0aW9ucy9hcGlUYWcyNzU2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "741fdbf5-0373-40ea-93e3-0ab356c8ed40"
+ "9be6262c-efc5-40a5-ab57-d21147239962"
],
"If-Match": [
"*"
@@ -716,7 +749,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -728,7 +761,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:58:17 GMT"
+ "Fri, 09 Mar 2018 19:52:14 GMT"
],
"Pragma": [
"no-cache"
@@ -740,35 +773,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "acc01ffd-317e-4adf-a25f-8697edbc0629"
+ "8b3f406f-b24b-44b1-b966-da0f51193e29"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1185"
],
"x-ms-correlation-request-id": [
- "146aecf4-777c-4ee2-b97b-c7844d452f95"
+ "d6911f4b-52a5-492b-9da5-e3a6c9cff6ad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235818Z:146aecf4-777c-4ee2-b97b-c7844d452f95"
+ "WESTUS2:20180309T195214Z:d6911f4b-52a5-492b-9da5-e3a6c9cff6ad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMzNjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI3NTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ec225e0-43a0-4bec-923b-54719a181b2f"
+ "087047c5-e04f-4f0a-9797-aba3fe27eda1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -783,13 +819,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:57:42 GMT"
+ "Fri, 09 Mar 2018 19:52:13 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -798,35 +834,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0603c257-eb1a-4e96-afd8-71345d5c3389"
+ "7c9d02e9-234d-4854-a521-8f77dcb8c506"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14982"
],
"x-ms-correlation-request-id": [
- "4bc7ec86-0256-4e69-8c63-238ce41da6e3"
+ "46b6b6b1-1701-4b23-a8ef-86c6e3f85dae"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235742Z:4bc7ec86-0256-4e69-8c63-238ce41da6e3"
+ "WESTUS2:20180309T195213Z:46b6b6b1-1701-4b23-a8ef-86c6e3f85dae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMzNjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI3NTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad7f03ed-12cd-419f-89ae-7b516a31df22"
+ "c9ed9bae-316d-4d78-ac2b-ca15a5d43049"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -841,13 +880,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:58:03 GMT"
+ "Fri, 09 Mar 2018 19:52:13 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -856,38 +895,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c79fb668-afc7-4222-84de-43a59a468bc7"
+ "d4c4ad6a-6b64-43dd-a765-466389ab224d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14981"
],
"x-ms-correlation-request-id": [
- "c813144b-d1c8-4eaa-a54f-9eaba799375d"
+ "665e2eca-18b3-49a8-8673-e26d77874a29"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235803Z:c813144b-d1c8-4eaa-a54f-9eaba799375d"
+ "WESTUS2:20180309T195213Z:665e2eca-18b3-49a8-8673-e26d77874a29"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzM2MT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjc1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "148f6d1c-3142-48c7-bad6-a301bf6a532d"
+ "2462db2e-fbf1-4e6d-b953-a5a2c788da40"
],
"If-Match": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -902,7 +944,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:57:52 GMT"
+ "Fri, 09 Mar 2018 19:52:13 GMT"
],
"Pragma": [
"no-cache"
@@ -914,28 +956,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5742c790-9a59-4932-aa92-aab4ea890f9e"
+ "cfc52979-6551-49bc-9df9-0267895f8870"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1188"
],
"x-ms-correlation-request-id": [
- "305dad43-0ab1-45eb-99c2-d455cc8f296a"
+ "4d6bb931-a8c6-48dc-8ce5-019d939ec20d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235753Z:305dad43-0ab1-45eb-99c2-d455cc8f296a"
+ "WESTUS2:20180309T195213Z:4d6bb931-a8c6-48dc-8ce5-019d939ec20d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzM2MT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMjc1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9c95b72-6caa-4be9-87b6-38dfffc39e20"
+ "3d234b44-af74-4261-9cd1-4be7f3909dc2"
],
"If-Match": [
"*"
@@ -945,7 +990,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -957,7 +1002,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:58:16 GMT"
+ "Fri, 09 Mar 2018 19:52:14 GMT"
],
"Pragma": [
"no-cache"
@@ -969,38 +1014,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "04108ee9-d5f3-4709-8e58-88247b01d297"
+ "692d170f-f1b3-428e-af51-8c7fbc3d3156"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1186"
],
"x-ms-correlation-request-id": [
- "c3eaf88b-35fa-4745-8d42-fec708e9ace2"
+ "3f6a09b3-acf3-41b6-aea8-9f59729dc6a2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235817Z:c3eaf88b-35fa-4745-8d42-fec708e9ace2"
+ "WESTUS2:20180309T195214Z:3f6a09b3-acf3-41b6-aea8-9f59729dc6a2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMzNjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI3NTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9da43e4b-914e-420d-ab54-d02232e7552d"
+ "4804e56d-a707-497f-9ba8-32d01a028c82"
],
"If-Match": [
- "\"AAAAAAAANZg=\""
+ "\"AAAAAAAAONU=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1015,7 +1063,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:58:06 GMT"
+ "Fri, 09 Mar 2018 19:52:13 GMT"
],
"Pragma": [
"no-cache"
@@ -1027,28 +1075,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "24f5c9a2-a125-4ca0-98ef-48f55e01c442"
+ "b106fb48-b68d-4d1b-879e-a0055e233b55"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1187"
],
"x-ms-correlation-request-id": [
- "b02c6bc2-4eb1-469f-a132-c22042445c76"
+ "53bedc4b-a330-4459-acb6-20aff41fd6ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235807Z:b02c6bc2-4eb1-469f-a132-c22042445c76"
+ "WESTUS2:20180309T195214Z:53bedc4b-a330-4459-acb6-20aff41fd6ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMzNjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI3NTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40b8d18b-7371-447e-b495-09478af167cf"
+ "a34b7604-4bce-40c2-a263-892eecf08868"
],
"If-Match": [
"*"
@@ -1058,7 +1109,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1070,7 +1121,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:58:18 GMT"
+ "Fri, 09 Mar 2018 19:52:14 GMT"
],
"Pragma": [
"no-cache"
@@ -1082,35 +1133,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d30295c1-0d34-4204-b38a-a6f1b8367426"
+ "69316c1f-04f7-485f-a661-9e068a0754b6"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1184"
],
"x-ms-correlation-request-id": [
- "660a9707-887b-4b9a-87cd-7bc2b0906815"
+ "a5fcc74b-3096-4d29-bf8c-13912c5b7491"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235819Z:660a9707-887b-4b9a-87cd-7bc2b0906815"
+ "WESTUS2:20180309T195214Z:a5fcc74b-3096-4d29-bf8c-13912c5b7491"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3361?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMzNjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag2756?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzI3NTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f785d706-99ba-45f8-8eef-7502a95b35dd"
+ "602a4fe0-d6df-4808-a8ca-7b8063252c95"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Tag not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -1128,7 +1182,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:58:07 GMT"
+ "Fri, 09 Mar 2018 19:52:14 GMT"
],
"Pragma": [
"no-cache"
@@ -1140,16 +1194,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6e9e9dac-90c6-4c41-9df1-66abc2f7b7fa"
+ "6c2c1be9-4e80-4fec-9434-e7330ce8b56f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14980"
],
"x-ms-correlation-request-id": [
- "57ac8c1a-0143-4adc-ac5d-8ded2289ed25"
+ "dc98fd3b-62fa-4a15-82ed-5f4fd25a5e6a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T235808Z:57ac8c1a-0143-4adc-ac5d-8ded2289ed25"
+ "WESTUS2:20180309T195214Z:dc98fd3b-62fa-4a15-82ed-5f4fd25a5e6a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -1157,10 +1214,10 @@
],
"Names": {
"CreateListUpdateDelete": [
- "apiTag3361",
- "apiTag5638",
- "somedescription2122",
- "tag_update4479"
+ "apiTag2756",
+ "apiTag551",
+ "somedescription2153",
+ "tag_update5960"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteApiTags.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteApiTags.json
index 7c74c5a7a5989..568fb8dbccc1e 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteApiTags.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteApiTags.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "c8830d8f-f403-47c5-9959-e2a5f4a1ab26"
+ "c6d7a3eb-3f9a-4271-a3ef-4696ddd82c36"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:37 GMT"
+ "Fri, 09 Mar 2018 19:45:26 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de081d3f-2c08-4fb7-b8cf-f05857ce0d4c",
- "55253726-3fe1-4aa5-8326-cb978509c5a9"
+ "d76dc7c8-4d1b-49bc-a79d-849a0c343fce",
+ "f7f29081-afa0-4c77-8e56-a214fe61856e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "1e1e5892-8cca-44a1-9973-7253bc93ff7e"
+ "1bec35eb-73e4-4c87-9322-17cd926b7185"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222937Z:1e1e5892-8cca-44a1-9973-7253bc93ff7e"
+ "WESTUS2:20180309T194527Z:1bec35eb-73e4-4c87-9322-17cd926b7185"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58fbfb64-93b9-40ae-92a4-565f5c71013c"
+ "3bc50f6d-0d6d-48d1-96b6-280893b2bc0b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:37 GMT"
+ "Fri, 09 Mar 2018 19:45:27 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1a52d234-f26d-4bf9-a2e1-4f5d61e80e8b"
+ "50b29556-cd52-4783-be3e-94ce68dae6ef"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "351896ee-4fd4-443d-af1b-2bb3c22c7a7b"
+ "d755d225-90a6-4d01-b0c7-4a5db1d64dd8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222937Z:351896ee-4fd4-443d-af1b-2bb3c22c7a7b"
+ "WESTUS2:20180309T194527Z:d755d225-90a6-4d01-b0c7-4a5db1d64dd8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ac75e30-46ce-4a34-bc18-9b08de52fc9e"
+ "7220abfe-fac4-4fe4-bdb5-986c1f4810ef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:37 GMT"
+ "Fri, 09 Mar 2018 19:45:27 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6647c9d4-fbf4-49df-b6c6-996f7331d29a"
+ "6497146d-8797-481b-b536-32d0caee5870"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "44b3c35d-cfd3-49de-b862-f0f45015c0ad"
+ "f790e0b1-92f4-4b15-8895-d27f34b4fefe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222938Z:44b3c35d-cfd3-49de-b862-f0f45015c0ad"
+ "WESTUS2:20180309T194527Z:f790e0b1-92f4-4b15-8895-d27f34b4fefe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cffa2e40-933a-4ab4-a7b7-327d7ceb4d1e"
+ "1301b49a-6657-437a-b1f0-ac7f03a620bc"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"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 \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:38 GMT"
+ "Fri, 09 Mar 2018 19:45:27 GMT"
],
"Pragma": [
"no-cache"
@@ -243,25 +252,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "59904376-327d-4e55-96f3-37a7367f2ce0"
+ "22f7fffb-dc02-4f7d-84d1-50e31276261a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "8fe0279d-61be-42f2-8b97-7cb51b29af43"
+ "2f9238e9-8d57-4808-8de6-7a9e85480ba7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222938Z:8fe0279d-61be-42f2-8b97-7cb51b29af43"
+ "WESTUS2:20180309T194527Z:2f9238e9-8d57-4808-8de6-7a9e85480ba7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzYwNjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMyNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag5885\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"apiTag6080\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -270,17 +282,17 @@
"61"
],
"x-ms-client-request-id": [
- "a6883fad-45e8-4f3f-b699-fc5f2b2bf6a9"
+ "65183eca-44af-4f36-923c-2acf192820ef"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag6067\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag6067\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5885\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3256\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"apiTag3256\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6080\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"311"
@@ -295,13 +307,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:41 GMT"
+ "Fri, 09 Mar 2018 19:45:28 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -310,38 +322,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "38276de3-3a9d-428c-895d-cc3e10cc7caf"
+ "3f0207d8-0923-482d-8d87-3a6c10b25fc5"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "44bc3ba1-04c7-4edb-84ee-7f0752aa42cc"
+ "f73312fa-1fd9-44d7-a0df-4b684b46413f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222942Z:44bc3ba1-04c7-4edb-84ee-7f0752aa42cc"
+ "WESTUS2:20180309T194528Z:f73312fa-1fd9-44d7-a0df-4b684b46413f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNjA2Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzI1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6191a1cc-effd-4ead-93eb-fe1901b382a8"
+ "49d6a3ce-4962-4347-bd06-6caf40490e43"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag6067\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5885\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag3256\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6080\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"330"
@@ -356,13 +371,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:41 GMT"
+ "Fri, 09 Mar 2018 19:45:28 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -371,16 +386,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea00f961-5b19-4273-b008-b7376b86d082"
+ "0a67e4d5-ac04-4009-bbf6-168942ef7777"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "f99b09d8-e3e7-45a3-8b99-e9c14d224f9d"
+ "947cd72a-2ed1-466a-8306-0ab9d4aff023"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222942Z:f99b09d8-e3e7-45a3-8b99-e9c14d224f9d"
+ "WESTUS2:20180309T194529Z:947cd72a-2ed1-466a-8306-0ab9d4aff023"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -392,17 +410,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bfabe861-c391-43a6-b53d-8e9f59c62ec2"
+ "02fd943e-90ef-4f20-8450-f04f5c82f7c1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag6067\",\r\n \"name\": \"apiTag5885\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\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 }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag3256\",\r\n \"name\": \"apiTag6080\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\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 }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -414,7 +432,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:42 GMT"
+ "Fri, 09 Mar 2018 19:45:29 GMT"
],
"Pragma": [
"no-cache"
@@ -432,16 +450,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2d9c8315-eb42-4454-a8a4-5553c76bac0f"
+ "e0126660-f617-4578-b64f-34529a17eb6a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "d5708d07-99ae-4c71-9a2e-6b3e61254c51"
+ "6567612b-800b-4c2e-a1c8-9c7b15d9fdc9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222943Z:d5708d07-99ae-4c71-9a2e-6b3e61254c51"
+ "WESTUS2:20180309T194530Z:6567612b-800b-4c2e-a1c8-9c7b15d9fdc9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -453,17 +474,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce59f2bc-b90f-4edf-887a-ebec3f51c904"
+ "6c3087c2-bdbf-420c-b8e4-1578ee491f01"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag6067\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5885\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag3256\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6080\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -475,7 +496,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:42 GMT"
+ "Fri, 09 Mar 2018 19:45:30 GMT"
],
"Pragma": [
"no-cache"
@@ -493,38 +514,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73320e42-cc36-4847-b73b-361e0c6bd4e4"
+ "cf62f8b9-59d0-43b6-be72-2dacfbf32380"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "abc3bb7b-9472-4964-b8e0-8e9a28642bae"
+ "344042d8-9639-46d5-a893-0c7e0bd1ebb9"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222943Z:abc3bb7b-9472-4964-b8e0-8e9a28642bae"
+ "WESTUS2:20180309T194530Z:344042d8-9639-46d5-a893-0c7e0bd1ebb9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNjA2Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzI1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b7c90ee8-9803-4700-bcb0-6ac0a9445f5b"
+ "84e92524-4688-46a7-ae3e-a786ae59be80"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag6067\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag5885\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/tags\",\r\n \"name\": \"apiTag3256\",\r\n \"properties\": {\r\n \"displayName\": \"apiTag6080\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -536,7 +560,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:42 GMT"
+ "Fri, 09 Mar 2018 19:45:30 GMT"
],
"Pragma": [
"no-cache"
@@ -545,7 +569,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -557,35 +581,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a2ff3a26-278f-4fc8-a9fd-e5a153401be2"
+ "03f4b166-eb73-4f86-a9dd-a789c47d1aaf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "3791509a-aca2-4c26-a0d5-a1cfd56bc6e7"
+ "6faf0c96-c102-4846-a6f2-9d95c803e004"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222943Z:3791509a-aca2-4c26-a0d5-a1cfd56bc6e7"
+ "WESTUS2:20180309T194530Z:6faf0c96-c102-4846-a6f2-9d95c803e004"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNjA2Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzI1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31281bc4-6830-4d97-b11c-74d9c2ea6564"
+ "a7eca0e2-4805-4098-a1a0-8ca279b4b851"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Tag not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -603,7 +630,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:44 GMT"
+ "Fri, 09 Mar 2018 19:45:31 GMT"
],
"Pragma": [
"no-cache"
@@ -615,35 +642,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3462a5e-3fe3-4ec6-817f-629dad8b82aa"
+ "b903df9a-667b-4de8-893d-d8dd69da8a5c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14991"
],
"x-ms-correlation-request-id": [
- "13291e6b-cc39-4eae-8d7d-b11e4726cdcc"
+ "ed581db1-cd6e-4bed-ae9b-d352fb263473"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222944Z:13291e6b-cc39-4eae-8d7d-b11e4726cdcc"
+ "WESTUS2:20180309T194531Z:ed581db1-cd6e-4bed-ae9b-d352fb263473"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNjA2Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzI1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e56f696-84d5-4905-b15b-8ddbad4e4433"
+ "36c56860-a3fb-4aab-91a5-14c8dd0272b6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -658,13 +688,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:42 GMT"
+ "Fri, 09 Mar 2018 19:45:30 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -673,16 +703,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c0fa3ee-cf85-4196-b2d8-051c4f8b58ac"
+ "de1dfb35-3ea8-45a5-b4d2-6aae90df805b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14993"
],
"x-ms-correlation-request-id": [
- "1f5f6383-03af-4b19-a3ea-7b178d3cb059"
+ "d9fdf815-fc98-4bc1-a49d-159a7e08e626"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222943Z:1f5f6383-03af-4b19-a3ea-7b178d3cb059"
+ "WESTUS2:20180309T194530Z:d9fdf815-fc98-4bc1-a49d-159a7e08e626"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -694,17 +727,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f8d731d-8f53-45d3-afd4-39ad507947ba"
+ "f0abb722-c545-4802-928d-bc9e1d5270a3"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag6067\",\r\n \"name\": \"apiTag5885\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\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 }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/apiTag3256\",\r\n \"name\": \"apiTag6080\"\r\n },\r\n \"api\": {\r\n \"id\": \"/apis/echo-api\",\r\n \"name\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\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 }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -716,7 +749,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:44 GMT"
+ "Fri, 09 Mar 2018 19:45:30 GMT"
],
"Pragma": [
"no-cache"
@@ -734,38 +767,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c192ce25-e1c6-44f3-8fd4-f1b4768b78e8"
+ "0ba01968-90b2-4bce-b5b0-c3528c39ebfe"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14992"
],
"x-ms-correlation-request-id": [
- "38f1ca96-2ea8-48b4-bbbb-576d9d950672"
+ "9a9791eb-4579-4c64-86fb-3dca0613941b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222944Z:38f1ca96-2ea8-48b4-bbbb-576d9d950672"
+ "WESTUS2:20180309T194531Z:9a9791eb-4579-4c64-86fb-3dca0613941b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNjA2Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzI1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59c6b846-4265-46f0-aacf-865403313ab0"
+ "816f7fe0-172a-402e-b98d-04ce14bb25d2"
],
"If-Match": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -780,7 +816,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:44 GMT"
+ "Fri, 09 Mar 2018 19:45:31 GMT"
],
"Pragma": [
"no-cache"
@@ -792,28 +828,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5848c778-8194-4b4d-a368-3a5d8dba2158"
+ "56adc731-92de-4e06-aae0-b4af11e66121"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "a1620311-f935-4dfb-9111-4083eeb3139f"
+ "961b6eac-0f69-42df-be80-209534a6a001"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222944Z:a1620311-f935-4dfb-9111-4083eeb3139f"
+ "WESTUS2:20180309T194531Z:961b6eac-0f69-42df-be80-209534a6a001"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnNjA2Nz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL3RhZ3MvYXBpVGFnMzI1Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19eeb41e-124c-4fd8-93db-3a8bc3c35584"
+ "7d26985b-94ff-4641-88bb-97d073b9db5c"
],
"If-Match": [
"*"
@@ -823,7 +862,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -835,7 +874,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:45 GMT"
+ "Fri, 09 Mar 2018 19:45:32 GMT"
],
"Pragma": [
"no-cache"
@@ -847,35 +886,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "78d59270-d343-42f1-b381-4f42155762cf"
+ "3d405568-0edb-4a2c-874b-80ea8e27eb51"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "4ee40d2b-014e-49be-a867-fc9f57f751fe"
+ "0166b60a-282d-44e6-933f-22fa79a68c31"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222945Z:4ee40d2b-014e-49be-a867-fc9f57f751fe"
+ "WESTUS2:20180309T194532Z:0166b60a-282d-44e6-933f-22fa79a68c31"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzYwNjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMyNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0be08c4-9c80-42d4-ae6f-395f886add18"
+ "b35e6f05-25e6-4ceb-a47d-5db8d86ddca1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -890,13 +932,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:44 GMT"
+ "Fri, 09 Mar 2018 19:45:31 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -905,35 +947,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e7c1a5a4-6853-4f20-873a-0fe96eb9ebfb"
+ "2340f0ef-0d6c-4f07-af0b-5faa1995e7a3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14990"
],
"x-ms-correlation-request-id": [
- "1e802339-e5b0-422f-8b6b-4b7c2738c7a9"
+ "7cd77f70-5fcd-4207-82f7-d56969b8d5d3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222944Z:1e802339-e5b0-422f-8b6b-4b7c2738c7a9"
+ "WESTUS2:20180309T194531Z:7cd77f70-5fcd-4207-82f7-d56969b8d5d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzYwNjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMyNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ea42c4e-7bd5-4e3f-a392-59a9a4c0e289"
+ "d09ed62e-6775-4bbf-abbe-a57070010e32"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -948,7 +993,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:45 GMT"
+ "Fri, 09 Mar 2018 19:45:31 GMT"
],
"Pragma": [
"no-cache"
@@ -960,38 +1005,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4ca5f67b-c6e0-4dc8-8a97-e961bb09bd7c"
+ "db8989f7-b234-4b29-9707-5bc7583a5254"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14989"
],
"x-ms-correlation-request-id": [
- "f85421df-1eb3-4268-b983-9851006935fa"
+ "d55d1654-f03e-47bb-83b9-efa03f7ae4d1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222945Z:f85421df-1eb3-4268-b983-9851006935fa"
+ "WESTUS2:20180309T194532Z:d55d1654-f03e-47bb-83b9-efa03f7ae4d1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzYwNjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMyNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d6980d5-b01d-4cb4-910e-837e24cd0c85"
+ "64df3087-073c-4e61-9d2a-066143bbd091"
],
"If-Match": [
- "\"AAAAAAAANY4=\""
+ "\"AAAAAAAAOIE=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1006,7 +1054,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:45 GMT"
+ "Fri, 09 Mar 2018 19:45:31 GMT"
],
"Pragma": [
"no-cache"
@@ -1018,28 +1066,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9724d84c-eb46-43f3-8e7f-580c96b7f79c"
+ "6b43a59e-7b35-44d4-8c47-012f2061493d"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "ff055b03-0b27-4647-a50d-48ec6305cf90"
+ "beb45f67-ac0b-49b9-a6ca-3657588b9acb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222945Z:ff055b03-0b27-4647-a50d-48ec6305cf90"
+ "WESTUS2:20180309T194532Z:beb45f67-ac0b-49b9-a6ca-3657588b9acb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag6067?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzYwNjc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/apiTag3256?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL2FwaVRhZzMyNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d9069b9-2551-42f3-8f07-74b0dc1f6dca"
+ "5cdd1e8a-56fe-4697-9ca3-3debb71b84a2"
],
"If-Match": [
"*"
@@ -1049,7 +1100,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1061,7 +1112,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 22:29:45 GMT"
+ "Fri, 09 Mar 2018 19:45:32 GMT"
],
"Pragma": [
"no-cache"
@@ -1073,16 +1124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e41caaf-dabe-4021-9a4d-a4aa7182421f"
+ "1abe3830-2343-4b37-9d3b-d87da0526f87"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "a4a9a49f-7e97-4a04-99ee-34ad659d450c"
+ "fabd0c6b-e1b7-45d9-b147-ef0acfe012b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T222945Z:a4a9a49f-7e97-4a04-99ee-34ad659d450c"
+ "WESTUS2:20180309T194532Z:fabd0c6b-e1b7-45d9-b147-ef0acfe012b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -1090,8 +1144,8 @@
],
"Names": {
"CreateListUpdateDeleteApiTags": [
- "apiTag6067",
- "apiTag5885"
+ "apiTag3256",
+ "apiTag6080"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteOperationTags.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteOperationTags.json
index af73d9b859fd6..8e080871e5c07 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteOperationTags.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteOperationTags.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "09a681c1-03ac-46fc-83ad-234089e620f5"
+ "195981b1-af91-4432-b81c-0492cbd111a4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:31 GMT"
+ "Fri, 09 Mar 2018 19:44:51 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "42182581-0f4f-413b-936f-d2a5f9510d05",
- "31b10cdd-6371-4b6e-9126-cd07b42fc267"
+ "455a5933-2274-4c03-a8a4-bb802e692775",
+ "73dcd9e2-6072-4aa9-b0f0-9c251e1ae453"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "6728f504-267b-4e48-8a9a-d6ee5929d3b2"
+ "8a288894-d2ec-4684-b1f7-4ea40ab661f6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232831Z:6728f504-267b-4e48-8a9a-d6ee5929d3b2"
+ "WESTUS2:20180309T194452Z:8a288894-d2ec-4684-b1f7-4ea40ab661f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9096b2fe-a4be-4ed7-94a5-f5bcc9eded44"
+ "54ed1341-efdb-45da-93ba-dfc6b66b5c61"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:31 GMT"
+ "Fri, 09 Mar 2018 19:44:51 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0d37cf73-bc11-4abf-85dd-f40e0c20c25d"
+ "f57bf7be-138a-4db1-a1c1-fb3b609f2cc1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14967"
],
"x-ms-correlation-request-id": [
- "e71c7213-e7ff-4f77-9dd9-ec26fe7e69d5"
+ "969778e2-a8b3-4b69-bd94-8f8c0ecc73e3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232831Z:e71c7213-e7ff-4f77-9dd9-ec26fe7e69d5"
+ "WESTUS2:20180309T194452Z:969778e2-a8b3-4b69-bd94-8f8c0ecc73e3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe75dca9-94b0-4240-ae37-19c205d44cfc"
+ "189c28f0-47b6-496c-95f7-31fbb1e09a19"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:31 GMT"
+ "Fri, 09 Mar 2018 19:44:52 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d9b850cf-1ee4-4003-80e5-e7b531f159cb"
+ "c22c1a61-6097-4228-9158-4aebc447dba8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14966"
],
"x-ms-correlation-request-id": [
- "c3aba414-e0d8-4069-969f-2a4a8219e4f4"
+ "5acb3ae9-84c3-4ca6-9e5b-debefd971eb6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232832Z:c3aba414-e0d8-4069-969f-2a4a8219e4f4"
+ "WESTUS2:20180309T194452Z:5acb3ae9-84c3-4ca6-9e5b-debefd971eb6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77db8c7f-d9df-463c-8edb-a0b30c7a5d8d"
+ "1e5690d0-d907-4be3-80ca-20b4f9d0375c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis\",\r\n \"name\": \"echo-api\",\r\n \"properties\": {\r\n \"displayName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"description\": null,\r\n \"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 \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:31 GMT"
+ "Fri, 09 Mar 2018 19:44:52 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fda13a7f-9606-4677-b773-bd4c7d558c33"
+ "02492b4f-71a8-4822-9867-6d6565470d0f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14965"
],
"x-ms-correlation-request-id": [
- "8a5d562c-1522-47e8-8bda-4278ba0ac9ab"
+ "bfa96343-2068-4291-a177-66b18a41972c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232832Z:8a5d562c-1522-47e8-8bda-4278ba0ac9ab"
+ "WESTUS2:20180309T194452Z:bfa96343-2068-4291-a177-66b18a41972c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7508b441-98ea-4c40-8d2d-3cf6dc639bd7"
+ "6a7e9b7d-7f94-4397-a6a3-92de7b8a6108"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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 \"description\": null,\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\\t\\t}\"\r\n }\r\n ]\r\n },\r\n \"responses\": [\r\n {\r\n \"statusCode\": 200,\r\n \"description\": null,\r\n \"representations\": [],\r\n \"headers\": []\r\n }\r\n ],\r\n \"policies\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:32 GMT"
+ "Fri, 09 Mar 2018 19:44:52 GMT"
],
"Pragma": [
"no-cache"
@@ -304,25 +316,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b150e37b-abc7-4db0-8b99-10b6e6f0cbc8"
+ "167cea4c-d668-4dd7-9b75-92fe90cf6440"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14964"
],
"x-ms-correlation-request-id": [
- "f32e8211-13bf-48e5-9491-ed3b48856f56"
+ "26ac272a-8c18-4bcb-aec0-b638b61a1502"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232832Z:f32e8211-13bf-48e5-9491-ed3b48856f56"
+ "WESTUS2:20180309T194452Z:26ac272a-8c18-4bcb-aec0-b638b61a1502"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzcxNTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzkyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"opreationTag1800\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"opreationTag7061\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -331,17 +346,17 @@
"67"
],
"x-ms-client-request-id": [
- "f4c8a9f7-4edd-4051-b3ea-7e41c3581550"
+ "480e7b0a-2fa4-47c2-b975-a7819323001d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag7158\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"operationTag7158\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag1800\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag9276\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"operationTag9276\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag7061\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"329"
@@ -356,13 +371,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:33 GMT"
+ "Fri, 09 Mar 2018 19:44:53 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -371,38 +386,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1ee51ca3-a870-4897-8e33-8e5e6536c68d"
+ "e9d8f841-5436-4b6c-9b11-75bf405e116b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "0d7bd5a2-c02a-44f7-8315-7c5dddd31950"
+ "5599b408-6aa0-4b5e-9d21-2e15b8829876"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232833Z:0d7bd5a2-c02a-44f7-8315-7c5dddd31950"
+ "WESTUS2:20180309T194453Z:5599b408-6aa0-4b5e-9d21-2e15b8829876"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnNzE1OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnOTI3Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f55f762f-2472-4769-a44b-f8cd517a6c49"
+ "f9dd7134-8679-461d-a77a-16db4f4d9c42"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag7158\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag1800\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag9276\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag7061\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"386"
@@ -417,13 +435,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:33 GMT"
+ "Fri, 09 Mar 2018 19:44:53 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -432,16 +450,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9be06283-7a37-4544-b61d-ae4eb290c084"
+ "49bcbf0c-f90f-448f-8a5f-ea5261b8edc4"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "9ec327ca-cc34-4b44-9dd3-a46b375056b9"
+ "0538e722-d3fc-431a-8170-006d90f141fd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232833Z:9ec327ca-cc34-4b44-9dd3-a46b375056b9"
+ "WESTUS2:20180309T194454Z:0538e722-d3fc-431a-8170-006d90f141fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -453,17 +474,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ed5e4155-62c9-4889-aa9a-51794774e45e"
+ "5c6552c9-a300-47b9-824d-581b4704c358"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag7158\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag1800\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag9276\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag7061\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -475,7 +496,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:33 GMT"
+ "Fri, 09 Mar 2018 19:44:54 GMT"
],
"Pragma": [
"no-cache"
@@ -493,38 +514,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4da0bb8e-eb23-4f06-8d27-f2cae099bd71"
+ "4f1dfc2c-44fc-4e4c-ab77-aaffd7d49e77"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14963"
],
"x-ms-correlation-request-id": [
- "db5f9fa3-316f-4541-93cd-72d01996a85a"
+ "6420daf1-6569-4eeb-9139-bd01a9a3c346"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232834Z:db5f9fa3-316f-4541-93cd-72d01996a85a"
+ "WESTUS2:20180309T194454Z:6420daf1-6569-4eeb-9139-bd01a9a3c346"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnNzE1OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnOTI3Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e20af3f-1441-488e-9983-6d1fe218f7de"
+ "b1669dde-5248-4ced-9bc9-e37045002ba8"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag7158\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag1800\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276\",\r\n \"type\": \"Microsoft.ApiManagement/service/apis/operations/tags\",\r\n \"name\": \"operationTag9276\",\r\n \"properties\": {\r\n \"displayName\": \"opreationTag7061\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -536,7 +560,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:33 GMT"
+ "Fri, 09 Mar 2018 19:44:54 GMT"
],
"Pragma": [
"no-cache"
@@ -545,7 +569,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -557,35 +581,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "14cac2a4-a629-4f12-b4d2-57c80271c8ca"
+ "19b3f90d-c62d-4b31-a047-90520e3347f3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14962"
],
"x-ms-correlation-request-id": [
- "39d4a055-a4fd-4e71-a42c-76febcf381b5"
+ "22144d3c-7506-410c-afcd-4de1186ca6ff"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232834Z:39d4a055-a4fd-4e71-a42c-76febcf381b5"
+ "WESTUS2:20180309T194455Z:22144d3c-7506-410c-afcd-4de1186ca6ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnNzE1OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnOTI3Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6e3a87e-eb1e-4f62-80b1-0bdcde496e4c"
+ "17ee2da0-12d4-4bce-96c3-b9bd98be4b42"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Tag not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -603,7 +630,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:35 GMT"
+ "Fri, 09 Mar 2018 19:44:57 GMT"
],
"Pragma": [
"no-cache"
@@ -615,16 +642,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3b83157f-5e59-473d-ae17-96935efd5afd"
+ "4d6854e7-2a77-44c7-8bcf-a3f84fff3423"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14959"
],
"x-ms-correlation-request-id": [
- "be47927f-c57b-4633-8e36-1c6f5a3be973"
+ "c2750991-039c-4e79-b361-e256784585f0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232835Z:be47927f-c57b-4633-8e36-1c6f5a3be973"
+ "WESTUS2:20180309T194457Z:c2750991-039c-4e79-b361-e256784585f0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -636,17 +666,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05b307d6-ff4e-4542-98b0-273de858c8a5"
+ "973b9675-3b70-4904-bdf7-98db3524ccb5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/operationTag7158\",\r\n \"name\": \"opreationTag1800\"\r\n },\r\n \"operation\": {\r\n \"id\": \"/apis/echo-api/operations/create-resource\",\r\n \"apiName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": null,\r\n \"name\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\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 }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/operationTag9276\",\r\n \"name\": \"opreationTag7061\"\r\n },\r\n \"operation\": {\r\n \"id\": \"/apis/echo-api/operations/create-resource\",\r\n \"apiName\": \"Echo API\",\r\n \"apiRevision\": \"1\",\r\n \"apiVersion\": null,\r\n \"name\": \"Create resource\",\r\n \"method\": \"POST\",\r\n \"urlTemplate\": \"/resource\",\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 }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -658,7 +688,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:34 GMT"
+ "Fri, 09 Mar 2018 19:44:56 GMT"
],
"Pragma": [
"no-cache"
@@ -676,35 +706,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "76948c75-e7f5-41c8-9a9f-65e99327950a"
+ "dd7b8ec1-305c-4894-91b9-b31bf3616802"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14961"
],
"x-ms-correlation-request-id": [
- "aa133061-308e-4080-a16d-07f9e4365f8a"
+ "58b4f70c-e7d5-4e5e-8c45-9073e37e975d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232834Z:aa133061-308e-4080-a16d-07f9e4365f8a"
+ "WESTUS2:20180309T194456Z:58b4f70c-e7d5-4e5e-8c45-9073e37e975d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnNzE1OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnOTI3Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e86d190e-a8b8-4671-a35a-7f8f9b1cefb8"
+ "d1e6a4a8-bf7e-4405-bb16-4433d699767c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -719,13 +752,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:34 GMT"
+ "Fri, 09 Mar 2018 19:44:56 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -734,38 +767,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ba34321f-d498-4a7b-a5c1-5a22222a000d"
+ "c10d5b67-2b94-40ba-addc-e4e9476fb0ba"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14960"
],
"x-ms-correlation-request-id": [
- "362fa746-db3b-4824-8a6f-1aade7c84e79"
+ "c313efca-5def-46fd-a4b0-013d0d3ded48"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232835Z:362fa746-db3b-4824-8a6f-1aade7c84e79"
+ "WESTUS2:20180309T194456Z:c313efca-5def-46fd-a4b0-013d0d3ded48"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnNzE1OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnOTI3Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6abb5bb8-f7a5-4d0e-8ceb-6816e65c97a9"
+ "5b407b4b-1b5c-4c5c-b4c4-5040ce5edc90"
],
"If-Match": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -780,7 +816,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:35 GMT"
+ "Fri, 09 Mar 2018 19:44:57 GMT"
],
"Pragma": [
"no-cache"
@@ -792,28 +828,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c3244c8b-4574-4c6b-adf1-ef11a3d70088"
+ "3ceb65de-3bb9-41ec-aeba-dbd5fd53b27b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "8edc4bef-081e-46b4-bb84-08025b3e4fa8"
+ "2b6b473c-5f99-4c32-921a-0505a31159ac"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232835Z:8edc4bef-081e-46b4-bb84-08025b3e4fa8"
+ "WESTUS2:20180309T194457Z:2b6b473c-5f99-4c32-921a-0505a31159ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnNzE1OD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/apis/echo-api/operations/create-resource/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9hcGlzL2VjaG8tYXBpL29wZXJhdGlvbnMvY3JlYXRlLXJlc291cmNlL3RhZ3Mvb3BlcmF0aW9uVGFnOTI3Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bf616fc2-0a43-4d8f-bcb8-086e4d413fee"
+ "713ef608-07a4-4463-97f2-ad82ed73ab03"
],
"If-Match": [
"*"
@@ -823,7 +862,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -835,7 +874,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:41 GMT"
+ "Fri, 09 Mar 2018 19:44:58 GMT"
],
"Pragma": [
"no-cache"
@@ -847,35 +886,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fbf4f6e8-edf0-431c-963b-56e74736aa8a"
+ "b103be42-063e-49b4-bf23-4b5304d6d076"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "d9ef51d9-82b9-4986-8763-d88fa73c5875"
+ "9a5018c1-5265-4066-9864-56b0bfec4f35"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232842Z:d9ef51d9-82b9-4986-8763-d88fa73c5875"
+ "WESTUS2:20180309T194458Z:9a5018c1-5265-4066-9864-56b0bfec4f35"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzcxNTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzkyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ebc05fe-72e8-4808-bb65-789eb115edb5"
+ "a0306b8f-84af-4a7a-9c53-18dc81c26327"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -890,13 +932,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:39 GMT"
+ "Fri, 09 Mar 2018 19:44:57 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -905,35 +947,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f98f6cb1-503f-4f78-b604-267649f3ebe3"
+ "37c748c4-7678-48b8-8432-2929322a5648"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14958"
],
"x-ms-correlation-request-id": [
- "38138f8d-868d-4c7f-9140-437acec0e38e"
+ "8165cc0d-d1e6-4962-8ef6-3bc57d68cc3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232839Z:38138f8d-868d-4c7f-9140-437acec0e38e"
+ "WESTUS2:20180309T194457Z:8165cc0d-d1e6-4962-8ef6-3bc57d68cc3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzcxNTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzkyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8e11186-096e-434b-98ef-804c8d9aaad0"
+ "32105a6b-d744-4d66-b05f-1f77eb726f1d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -948,7 +993,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:39 GMT"
+ "Fri, 09 Mar 2018 19:44:57 GMT"
],
"Pragma": [
"no-cache"
@@ -960,38 +1005,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1244faf9-bff5-480e-9615-0fe3c339a743"
+ "7ecb0eea-1d5f-4748-a1e6-6fa8943bedb6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14957"
],
"x-ms-correlation-request-id": [
- "35b3f235-fb11-4a2f-a532-c869af565a6c"
+ "0ce01e3a-932d-4b57-aa46-0666fed4ade8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232840Z:35b3f235-fb11-4a2f-a532-c869af565a6c"
+ "WESTUS2:20180309T194458Z:0ce01e3a-932d-4b57-aa46-0666fed4ade8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzcxNTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzkyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a633831-627f-4175-954d-fd71e07f2803"
+ "c3855232-1c6f-42eb-8081-fe7a86e385e2"
],
"If-Match": [
- "\"AAAAAAAANZI=\""
+ "\"AAAAAAAAOIA=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1006,7 +1054,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:39 GMT"
+ "Fri, 09 Mar 2018 19:44:57 GMT"
],
"Pragma": [
"no-cache"
@@ -1018,28 +1066,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ebd9904d-ea49-4800-a97c-57c7f119347f"
+ "148fa125-b7b8-4353-895b-36437cb96a59"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "2ffc1f59-9932-4995-9237-6ea12d8b9125"
+ "3170ebb1-65a9-4a33-a864-e5cce92f2e5a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232840Z:2ffc1f59-9932-4995-9237-6ea12d8b9125"
+ "WESTUS2:20180309T194458Z:3170ebb1-65a9-4a33-a864-e5cce92f2e5a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag7158?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzcxNTg/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/operationTag9276?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL29wZXJhdGlvblRhZzkyNzY/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d92303c-7a91-4be7-9164-25ecf1877433"
+ "ccd998d8-9cb0-4c05-a98b-405d2ba9ba33"
],
"If-Match": [
"*"
@@ -1049,7 +1100,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1061,7 +1112,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:28:41 GMT"
+ "Fri, 09 Mar 2018 19:44:58 GMT"
],
"Pragma": [
"no-cache"
@@ -1073,16 +1124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bf174c43-b42e-4f2f-adaa-e7372bb1916a"
+ "478654a2-a934-45bc-88a3-2a5630d3ed19"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "d6c3ce65-a2b7-4710-9dca-898f2b10cc38"
+ "983fcd92-bc3e-49e7-a09d-1dd0108b7fcb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T232842Z:d6c3ce65-a2b7-4710-9dca-898f2b10cc38"
+ "WESTUS2:20180309T194458Z:983fcd92-bc3e-49e7-a09d-1dd0108b7fcb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -1090,8 +1144,8 @@
],
"Names": {
"CreateListUpdateDeleteOperationTags": [
- "operationTag7158",
- "opreationTag1800"
+ "operationTag9276",
+ "opreationTag7061"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteProductTags.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteProductTags.json
index 068732235469a..711cc0a05b45e 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteProductTags.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TagTest/CreateListUpdateDeleteProductTags.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "e3da5072-56ac-453f-af52-14eac65488ae"
+ "4c04b36e-1246-46eb-8d6d-f8ab08f0b2b1"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:12 GMT"
+ "Fri, 09 Mar 2018 19:45:59 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "533c1671-64b4-474a-a783-dd8c1a92aaee",
- "e9b2bc08-4b30-4caf-ba76-6b04e8422353"
+ "a0a4dafe-2f19-49c2-9a50-034fe5e9ff9f",
+ "a6ad390d-bbbd-49da-bf84-7fa2e6d1406a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "ff335a49-603b-4554-a2c0-f39e7fd9ae03"
+ "e6d7ff2a-254f-44b5-a88b-5355aeb949e7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233212Z:ff335a49-603b-4554-a2c0-f39e7fd9ae03"
+ "WESTUS2:20180309T194559Z:e6d7ff2a-254f-44b5-a88b-5355aeb949e7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2d8b8c75-2884-48aa-bacf-4dadb333725b"
+ "58c4b697-88d2-4039-b56e-f893d8231f01"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:12 GMT"
+ "Fri, 09 Mar 2018 19:45:59 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9a139181-f565-476d-ac64-17d5d035d4e6"
+ "d7a77f2c-b98b-476a-9d77-16806e776e44"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "77cbe77a-c09c-4009-bb08-55817741f3d3"
+ "cdd93485-840d-4338-8c99-7314585c12c0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233213Z:77cbe77a-c09c-4009-bb08-55817741f3d3"
+ "WESTUS2:20180309T194559Z:cdd93485-840d-4338-8c99-7314585c12c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f991d9d5-4c42-41f7-9b97-a1a73bab326a"
+ "ad80cecb-64b6-44e0-aa1a-b8be562306b4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:12 GMT"
+ "Fri, 09 Mar 2018 19:45:59 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7baf98ef-2c18-428d-b502-ac4981efc96c"
+ "c0d1ca80-6f3f-430f-84d3-4fdd7d1b37b0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "ecb1cdc0-5bb6-4148-8988-c9d224d0dbd2"
+ "a35bcaba-8e52-4ff0-ab33-25c919b89179"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233213Z:ecb1cdc0-5bb6-4148-8988-c9d224d0dbd2"
+ "WESTUS2:20180309T194600Z:a35bcaba-8e52-4ff0-ab33-25c919b89179"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "daa2e431-48ee-45a3-a1a5-f74febd56c76"
+ "86dbf11d-ffef-4479-87fa-f2d2b84d640c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"type\": \"Microsoft.ApiManagement/service/products\",\r\n \"name\": \"unlimited\",\r\n \"properties\": {\r\n \"displayName\": \"Unlimited\",\r\n \"description\": \"Subscribers have completely unlimited access to the API. Administrator approval is required.\",\r\n \"terms\": null,\r\n \"subscriptionRequired\": true,\r\n \"approvalRequired\": true,\r\n \"subscriptionsLimit\": 1,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:12 GMT"
+ "Fri, 09 Mar 2018 19:45:59 GMT"
],
"Pragma": [
"no-cache"
@@ -243,25 +252,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "680533d3-208b-4499-bed1-ee4a6d6bdcb1"
+ "f0d7f936-e352-4bf2-bbdd-003e7488bba9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "4c8e46ca-3c7a-403f-b442-410a93aea2a4"
+ "a2a93d8e-3aa5-4aa1-9bf8-c355a97febd3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233213Z:4c8e46ca-3c7a-403f-b442-410a93aea2a4"
+ "WESTUS2:20180309T194600Z:a2a93d8e-3aa5-4aa1-9bf8-c355a97febd3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc4ODQ3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWczMjIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"productTag9997\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"productTag9020\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -270,17 +282,17 @@
"65"
],
"x-ms-client-request-id": [
- "db1f64a3-4853-4cd2-a543-c235813862a2"
+ "ae545325-a736-41e6-9c9c-b5ca8ab1bf6d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag8847\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"productTag8847\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9997\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag3221\",\r\n \"type\": \"Microsoft.ApiManagement/service/tags\",\r\n \"name\": \"productTag3221\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9020\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"323"
@@ -295,13 +307,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:30 GMT"
+ "Fri, 09 Mar 2018 19:46:00 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -310,38 +322,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "58f89a2e-99e5-4f8a-9f05-2ce2d31afc04"
+ "261c1767-f7db-4a8c-87c0-55a47e01ef64"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "bb069778-3e5e-4765-a145-54d13698e100"
+ "a3566459-0347-44ce-9e42-4cb6feaad3b5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233230Z:bb069778-3e5e-4765-a145-54d13698e100"
+ "WESTUS2:20180309T194600Z:a3566459-0347-44ce-9e42-4cb6feaad3b5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzg4NDc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzMyMjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "69218cef-b08d-4be0-b79a-f6d462eae906"
+ "cdd5091e-0111-4155-8e91-92f8b06a9450"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag8847\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9997\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag3221\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9020\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"349"
@@ -356,13 +371,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:39 GMT"
+ "Fri, 09 Mar 2018 19:46:00 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -371,16 +386,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ed4718a3-e06f-4d0d-8734-0278e334528d"
+ "61534c25-2b8c-43c5-aa54-5da026c1f796"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "b5f2587a-9083-4444-be53-d23b7fc46729"
+ "3a7f6d7c-1c62-406d-9c48-b49b4503851e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233239Z:b5f2587a-9083-4444-be53-d23b7fc46729"
+ "WESTUS2:20180309T194601Z:3a7f6d7c-1c62-406d-9c48-b49b4503851e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
@@ -392,17 +410,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09f09d47-82cd-4b3a-86c2-c3a23b5013b6"
+ "1181ee14-4189-4fbf-bfdf-d04f60b59ddd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag8847\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9997\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag3221\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9020\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -414,7 +432,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:39 GMT"
+ "Fri, 09 Mar 2018 19:46:01 GMT"
],
"Pragma": [
"no-cache"
@@ -432,38 +450,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a06267f-9499-46f3-845a-90a79d39d88b"
+ "2e05fa10-45c7-4cbd-8036-3d2021b8cc00"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "75aaa2c7-a5fb-4914-8e98-76ce53825da2"
+ "6b8f99de-381b-4162-ad84-b2b178c22201"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233240Z:75aaa2c7-a5fb-4914-8e98-76ce53825da2"
+ "WESTUS2:20180309T194601Z:6b8f99de-381b-4162-ad84-b2b178c22201"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzg4NDc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzMyMjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d073034-a5b1-4170-816f-a7ecdaa2f665"
+ "89ee9a89-ae7e-40ff-8084-eb752ac790e5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag8847\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9997\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221\",\r\n \"type\": \"Microsoft.ApiManagement/service/products/tags\",\r\n \"name\": \"productTag3221\",\r\n \"properties\": {\r\n \"displayName\": \"productTag9020\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -475,7 +496,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:39 GMT"
+ "Fri, 09 Mar 2018 19:46:01 GMT"
],
"Pragma": [
"no-cache"
@@ -484,7 +505,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -496,35 +517,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "da7af0b9-e3e1-4330-a079-7c7da78ce0f5"
+ "75468c98-5961-40e6-8b99-dacb1c059cac"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "ba574001-8e3e-40db-80ab-7acd3d72fe78"
+ "697bc11f-4afb-4def-8ea3-a0bc64240f81"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233240Z:ba574001-8e3e-40db-80ab-7acd3d72fe78"
+ "WESTUS2:20180309T194602Z:697bc11f-4afb-4def-8ea3-a0bc64240f81"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzg4NDc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzMyMjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0caf46c5-ebae-4817-ab18-25bf04582a8b"
+ "b64770b0-6644-4a7d-850d-2f3de2252cdd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Tag not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -542,7 +566,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:08 GMT"
+ "Fri, 09 Mar 2018 19:46:02 GMT"
],
"Pragma": [
"no-cache"
@@ -554,16 +578,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8787dc2b-5587-419d-8e3d-b5606dd347f5"
+ "e37f0af6-f097-4ab8-bfa0-8d94d5ea4c6f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14992"
],
"x-ms-correlation-request-id": [
- "93fe0bd6-a1c4-4f89-b897-17a5732233d5"
+ "307afaeb-5eda-4226-bf14-533fe84d9130"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233309Z:93fe0bd6-a1c4-4f89-b897-17a5732233d5"
+ "WESTUS2:20180309T194603Z:307afaeb-5eda-4226-bf14-533fe84d9130"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -575,17 +602,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c162c0e-dea1-4292-a63a-61c55019dd66"
+ "53b46c1d-1e91-4fd2-915f-ae9c37189c0f"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/productTag8847\",\r\n \"name\": \"productTag9997\"\r\n },\r\n \"product\": {\r\n \"id\": \"/products/starter\",\r\n \"name\": \"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\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"tag\": {\r\n \"id\": \"/tags/productTag3221\",\r\n \"name\": \"productTag9020\"\r\n },\r\n \"product\": {\r\n \"id\": \"/products/starter\",\r\n \"name\": \"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\": 2147483647,\r\n \"state\": \"published\"\r\n }\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -597,7 +624,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:32:40 GMT"
+ "Fri, 09 Mar 2018 19:46:02 GMT"
],
"Pragma": [
"no-cache"
@@ -615,35 +642,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "53daf6da-fbcd-4535-9eaa-e27b6eb3315c"
+ "b342e7c2-9ae6-43f9-89d1-148874f8f463"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "4418f6dd-03b4-4758-bb5c-dedf78db5986"
+ "7f103cf5-4e5e-4de5-852b-04639d9bf8f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233241Z:4418f6dd-03b4-4758-bb5c-dedf78db5986"
+ "WESTUS2:20180309T194602Z:7f103cf5-4e5e-4de5-852b-04639d9bf8f7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzg4NDc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzMyMjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd5c390b-ac6a-4469-89dc-b78b99f03e95"
+ "da19034f-da47-4e00-a87c-6c0714e7d90d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -658,13 +688,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:01 GMT"
+ "Fri, 09 Mar 2018 19:46:02 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -673,38 +703,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "13eb3bbd-72da-4fc8-898b-fc770a5060d9"
+ "49fd134c-421b-4f48-827c-992feeee8e64"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14993"
],
"x-ms-correlation-request-id": [
- "cb93ce98-5c34-4731-afde-e26bc827741f"
+ "19972edb-207b-42ef-b4ca-12ebf58e5933"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233302Z:cb93ce98-5c34-4731-afde-e26bc827741f"
+ "WESTUS2:20180309T194602Z:19972edb-207b-42ef-b4ca-12ebf58e5933"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzg4NDc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzMyMjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "161dadad-4112-44d2-b460-b3fff1992c7a"
+ "53d9aa81-4b8a-43a5-8da1-712876a3a993"
],
"If-Match": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -719,7 +752,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:07 GMT"
+ "Fri, 09 Mar 2018 19:46:02 GMT"
],
"Pragma": [
"no-cache"
@@ -731,28 +764,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "67b5b746-7d83-425c-bf8c-8aace6684935"
+ "afdd22cd-6b92-4493-889d-39ce6262f096"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "9fed656f-a321-48b0-b499-9629c205c2ee"
+ "eed25ed0-554b-4413-ab10-85cb637b1c6e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233308Z:9fed656f-a321-48b0-b499-9629c205c2ee"
+ "WESTUS2:20180309T194603Z:eed25ed0-554b-4413-ab10-85cb637b1c6e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzg4NDc/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9wcm9kdWN0cy9zdGFydGVyL3RhZ3MvcHJvZHVjdFRhZzMyMjE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c1e4693-c00b-4ebc-83ea-837ac3df68e8"
+ "79817534-1c2f-4fa6-bd52-ae7cb9230b0b"
],
"If-Match": [
"*"
@@ -762,7 +798,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -774,7 +810,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:13 GMT"
+ "Fri, 09 Mar 2018 19:46:03 GMT"
],
"Pragma": [
"no-cache"
@@ -786,35 +822,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7533f6e9-eeed-4839-bb77-3cb4202b8c0e"
+ "b46852e7-ed85-4a1d-be3d-90d69de77d9a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "740a73d1-7170-4fbf-8210-f15ae4221f17"
+ "fb0a892b-e447-4888-b5f0-e450e12667e2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233314Z:740a73d1-7170-4fbf-8210-f15ae4221f17"
+ "WESTUS2:20180309T194604Z:fb0a892b-e447-4888-b5f0-e450e12667e2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc4ODQ3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWczMjIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b450c2a4-9ff4-45f8-9f9b-2ea3394a693a"
+ "08ba7206-c3fe-4815-ac80-43380fc9f671"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -829,13 +868,13 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:11 GMT"
+ "Fri, 09 Mar 2018 19:46:03 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -844,35 +883,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e501a0ca-5805-4321-be9b-2bf8ff434196"
+ "3d3ff009-c841-48c8-b5a8-00d5d147304a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14991"
],
"x-ms-correlation-request-id": [
- "bdc05b06-e707-475f-a618-4769cbf85e43"
+ "51502a19-769d-488b-9f3e-789e3d27e034"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233312Z:bdc05b06-e707-475f-a618-4769cbf85e43"
+ "WESTUS2:20180309T194603Z:51502a19-769d-488b-9f3e-789e3d27e034"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc4ODQ3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWczMjIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d16ead78-6115-4ac9-b09b-731599d9bb20"
+ "a5ef2bc1-8623-470a-9b42-326d9ecf59ed"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -887,7 +929,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:12 GMT"
+ "Fri, 09 Mar 2018 19:46:03 GMT"
],
"Pragma": [
"no-cache"
@@ -899,38 +941,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1742f28-405b-4576-aa02-14381c030444"
+ "57a5af9d-e6d7-4bda-9f0f-228f18a48cce"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14990"
],
"x-ms-correlation-request-id": [
- "c90a9b57-d15c-4025-a4a1-94d0ccb0cfc4"
+ "59c7a19a-4e2a-4ac9-8e67-510693ea2559"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233313Z:c90a9b57-d15c-4025-a4a1-94d0ccb0cfc4"
+ "WESTUS2:20180309T194603Z:59c7a19a-4e2a-4ac9-8e67-510693ea2559"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc4ODQ3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWczMjIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05bcb8ec-0441-4794-b2b3-fde665e3e5c8"
+ "0c170143-a498-4246-a0e4-944e21b61aae"
],
"If-Match": [
- "\"AAAAAAAANZQ=\""
+ "\"AAAAAAAAOII=\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -945,7 +990,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:11 GMT"
+ "Fri, 09 Mar 2018 19:46:03 GMT"
],
"Pragma": [
"no-cache"
@@ -957,28 +1002,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "63df43fd-432d-4d2c-9bb6-8db286e60d4b"
+ "24f6354c-0655-460b-af79-ffd8d71c8eb8"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "dd13e728-91c7-4e69-88c1-27eaf64367c9"
+ "0f530492-eb17-4bef-bc9c-ca3e00912dfe"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233312Z:dd13e728-91c7-4e69-88c1-27eaf64367c9"
+ "WESTUS2:20180309T194603Z:0f530492-eb17-4bef-bc9c-ca3e00912dfe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag8847?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWc4ODQ3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tags/productTag3221?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90YWdzL3Byb2R1Y3RUYWczMjIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2329b62f-b5b5-4897-8ce4-e92c26ea754b"
+ "641408e1-b77f-404f-8fa5-cd7753944adb"
],
"If-Match": [
"*"
@@ -988,7 +1036,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -1000,7 +1048,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 23:33:13 GMT"
+ "Fri, 09 Mar 2018 19:46:03 GMT"
],
"Pragma": [
"no-cache"
@@ -1012,16 +1060,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2edc1d14-225e-4df4-9f64-449f0af5a340"
+ "f8e260fe-e669-42af-b034-9a263b396151"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "c1e4d6da-4f74-43fd-85c9-311fd10ed9ca"
+ "20897081-9cdc-4289-9a02-b016453a44db"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T233314Z:c1e4d6da-4f74-43fd-85c9-311fd10ed9ca"
+ "WESTUS2:20180309T194604Z:20897081-9cdc-4289-9a02-b016453a44db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -1029,8 +1080,8 @@
],
"Names": {
"CreateListUpdateDeleteProductTags": [
- "productTag8847",
- "productTag9997"
+ "productTag3221",
+ "productTag9020"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessGitTests/GetUpdateKeys.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessGitTests/GetUpdateKeys.json
index b8350a42343b7..19af0f4cc3b23 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessGitTests/GetUpdateKeys.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessGitTests/GetUpdateKeys.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "6b482260-76db-431b-98ab-bff60e935284"
+ "772e1976-36fd-4a9b-9193-72b619459479"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:02 GMT"
+ "Fri, 09 Mar 2018 19:39:46 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dce3f430-f507-4212-8c72-a5375c010971",
- "0fda2639-820a-4bd2-bc69-c0cbaf64e153"
+ "8fda00fb-d5c4-465d-8c54-f37278554912",
+ "11d0e0e3-7df2-4d4f-82fc-302e4354021d"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-correlation-request-id": [
- "5d1e301f-628b-4740-bb07-ecb4c356ff9e"
+ "a774d8d2-2f46-4009-a52a-63f5d8953f9d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000002Z:5d1e301f-628b-4740-bb07-ecb4c356ff9e"
+ "WESTUS2:20180309T193946Z:a774d8d2-2f46-4009-a52a-63f5d8953f9d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20b9a1b7-1597-4e23-91c3-d8fb3cf97186"
+ "03d04177-6c9d-4282-bc7b-afbade4e25cb"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:02 GMT"
+ "Fri, 09 Mar 2018 19:39:46 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c01c08b8-cb8d-434b-a02a-754a245e6d97"
+ "af832458-669a-475d-bc44-d48118e7ba5e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14999"
],
"x-ms-correlation-request-id": [
- "787beeac-52f4-44bd-b93f-071720a88800"
+ "0cdbfc98-58ff-49de-91c8-78e0c5067bf0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000002Z:787beeac-52f4-44bd-b93f-071720a88800"
+ "WESTUS2:20180309T193946Z:0cdbfc98-58ff-49de-91c8-78e0c5067bf0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,17 +148,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0cf4f88-d95f-4e03-93bf-3a54effb0539"
+ "43a93a42-e2a2-4151-bc70-339878932706"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"iuT6o+kpmwgxI13Uc9dUIksZIwmXVOZRoJFMCQTpZ+FJxrtb7bpdyGOLVaAJWYP/12ty21RHwSGlHNKGgKdAUg==\",\r\n \"secondaryKey\": \"Vp7KD6a5UkuxbgNKfQIfxMfe3aYrsad0/X7lmyM2IYpeamzYuc38vyobtD/UCioResmfZx0/0yH+ee0R9h8HtQ==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"YYcITzZLwLtdHRM7IN3RYgi+uKVDsabsh1Bf+1EHbOq1fijTIzyOqc2dJJbJCJly8JEvw90sV1MLUd4QoxWtwQ==\",\r\n \"secondaryKey\": \"JNeB9OqAjRcga4j7Hx90X2ONyGyn7uYCIt+y7m7x3g9pkzYGI2w7bIddB9ppoD1IdOFKKvYO5AfPFsBk+paA8g==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:03 GMT"
+ "Fri, 09 Mar 2018 19:39:46 GMT"
],
"Pragma": [
"no-cache"
@@ -185,16 +191,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7601945-fd10-4b0c-b0bf-8da918164c28"
+ "eddfca84-be04-4e99-b2a9-a31edf4f136a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14998"
],
"x-ms-correlation-request-id": [
- "8630f895-d262-412d-baaa-459ca095a0d6"
+ "2d435ef7-436c-4689-a4a7-538889fd4dfd"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000003Z:8630f895-d262-412d-baaa-459ca095a0d6"
+ "WESTUS2:20180309T193946Z:2d435ef7-436c-4689-a4a7-538889fd4dfd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -206,17 +215,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "80bb4b64-7841-4229-88f5-11b81213576e"
+ "2e9ea7e6-b3fe-4df8-96e4-10d7c32eb531"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"YYcITzZLwLtdHRM7IN3RYgi+uKVDsabsh1Bf+1EHbOq1fijTIzyOqc2dJJbJCJly8JEvw90sV1MLUd4QoxWtwQ==\",\r\n \"secondaryKey\": \"Vp7KD6a5UkuxbgNKfQIfxMfe3aYrsad0/X7lmyM2IYpeamzYuc38vyobtD/UCioResmfZx0/0yH+ee0R9h8HtQ==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"qGAYbHh56pG04Qc4WcaMRnSgPP5CYTBjHo8rDJ38cCQ21QKjtxo5G/595Z2jtYmKGvlJrjl5OALjK4vCQXBSTw==\",\r\n \"secondaryKey\": \"JNeB9OqAjRcga4j7Hx90X2ONyGyn7uYCIt+y7m7x3g9pkzYGI2w7bIddB9ppoD1IdOFKKvYO5AfPFsBk+paA8g==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,7 +237,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:03 GMT"
+ "Fri, 09 Mar 2018 19:39:47 GMT"
],
"Pragma": [
"no-cache"
@@ -249,16 +258,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ede25aa3-533c-4cbc-8945-91d0eb5935eb"
+ "de292a45-0c63-43f8-8d08-04164db341f2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14997"
],
"x-ms-correlation-request-id": [
- "a753b740-2566-4726-b1f7-1813e2a59d74"
+ "b712cef7-c9af-44bb-be90-a89f7398f785"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000003Z:a753b740-2566-4726-b1f7-1813e2a59d74"
+ "WESTUS2:20180309T193947Z:b712cef7-c9af-44bb-be90-a89f7398f785"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -270,17 +282,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bc9c3cd6-2646-44c7-87ee-9545765620fb"
+ "569e49e2-758f-4d56-ab89-db8b2378d707"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"YYcITzZLwLtdHRM7IN3RYgi+uKVDsabsh1Bf+1EHbOq1fijTIzyOqc2dJJbJCJly8JEvw90sV1MLUd4QoxWtwQ==\",\r\n \"secondaryKey\": \"JNeB9OqAjRcga4j7Hx90X2ONyGyn7uYCIt+y7m7x3g9pkzYGI2w7bIddB9ppoD1IdOFKKvYO5AfPFsBk+paA8g==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"qGAYbHh56pG04Qc4WcaMRnSgPP5CYTBjHo8rDJ38cCQ21QKjtxo5G/595Z2jtYmKGvlJrjl5OALjK4vCQXBSTw==\",\r\n \"secondaryKey\": \"SfuvHnqdk+9RYriLJYraIDzVG4dt29NisAXbDZNTBXGYEWe6+bObjsAwIeQ4N/wJC8z29Zti515L3TRXPz2Yug==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -292,7 +304,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:03 GMT"
+ "Fri, 09 Mar 2018 19:39:47 GMT"
],
"Pragma": [
"no-cache"
@@ -313,16 +325,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "070e3ca1-6282-42da-b275-5b37b389ed95"
+ "1867a4d4-85b4-43e7-9e82-fd01beb1bc91"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14996"
],
"x-ms-correlation-request-id": [
- "5e09b35a-d4ea-414a-a406-7793e308179f"
+ "2a77bbc2-9577-4493-bdb4-71527e81286a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000003Z:5e09b35a-d4ea-414a-a406-7793e308179f"
+ "WESTUS2:20180309T193947Z:2a77bbc2-9577-4493-bdb4-71527e81286a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -334,14 +349,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d413ae12-8fc7-4618-bdbb-85f8837232e9"
+ "07259662-67f7-45ce-91e7-43a65a141f81"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -353,7 +368,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:03 GMT"
+ "Fri, 09 Mar 2018 19:39:46 GMT"
],
"Pragma": [
"no-cache"
@@ -365,16 +380,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cc8ad9eb-cc3d-4629-a043-d4a5b7858ad2"
+ "1fc08788-46cc-47a3-89c2-5991786b8c57"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1198"
],
"x-ms-correlation-request-id": [
- "9cdefa42-a120-416c-895a-651e87752a26"
+ "d49f4008-6cbb-42f6-89b2-9ba0b0f41840"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000003Z:9cdefa42-a120-416c-895a-651e87752a26"
+ "WESTUS2:20180309T193946Z:d49f4008-6cbb-42f6-89b2-9ba0b0f41840"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -386,14 +404,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3638d8c5-6355-4589-8087-d1b13144247b"
+ "f306b1ab-f543-4b67-aa38-e12fdcadc082"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -405,7 +423,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:00:03 GMT"
+ "Fri, 09 Mar 2018 19:39:47 GMT"
],
"Pragma": [
"no-cache"
@@ -417,16 +435,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4be533b2-99e1-481c-9345-5e012cbe33a5"
+ "0874810e-9d7e-4ce7-b6e0-700ce64c246f"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1197"
],
"x-ms-correlation-request-id": [
- "c9a80993-0a07-474a-af6e-ba3bba810f61"
+ "eef1e877-b59b-4af8-b67c-a7de0b442997"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000003Z:c9a80993-0a07-474a-af6e-ba3bba810f61"
+ "WESTUS2:20180309T193947Z:eef1e877-b59b-4af8-b67c-a7de0b442997"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessTests/EnableGetAndUpdateKeys.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessTests/EnableGetAndUpdateKeys.json
index f06ed4ade6f2e..01ca2e2e63d4a 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessTests/EnableGetAndUpdateKeys.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantAccessTests/EnableGetAndUpdateKeys.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "2f2bc0fd-3bc5-41ec-8405-c1bf3436412b"
+ "dd21a9b1-5a07-4f04-ab8a-1d4ad905e7b9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:21 GMT"
+ "Fri, 09 Mar 2018 20:48:55 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9f7891c6-d702-498b-965d-f312d8978ef2",
- "3a0379f6-2561-4758-bb94-dddf445ba621"
+ "f707f06d-c04b-40f1-8f51-b9ddd4a1f8a4",
+ "fc1d6b14-fafa-4b9c-8bb2-c9e79cbf21c0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-correlation-request-id": [
- "9fe7e049-365c-4956-b3e1-a75d37b249dd"
+ "9ef6b79d-450e-473b-a3e9-e09f73d16b3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000121Z:9fe7e049-365c-4956-b3e1-a75d37b249dd"
+ "WESTUS2:20180309T204855Z:9ef6b79d-450e-473b-a3e9-e09f73d16b3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b80f183e-3ccd-4b75-a60f-070ab46fac99"
+ "9a19e340-e302-43f7-9d40-eee7d3746f7b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:21 GMT"
+ "Fri, 09 Mar 2018 20:48:55 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fb1eaba3-2429-4831-a452-168c05781679"
+ "0d06a334-6e80-4cec-b439-8485a6c71b83"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "e1b763f5-1fe8-4b2d-baf8-33124f11f2e0"
+ "6c51f676-4dc5-4c31-919b-ccd7598fe637"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000122Z:e1b763f5-1fe8-4b2d-baf8-33124f11f2e0"
+ "WESTUS2:20180309T204856Z:6c51f676-4dc5-4c31-919b-ccd7598fe637"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,17 +148,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f7eb65df-b7bd-4aaf-b65b-186d22caff5f"
+ "a18f2605-3e6c-45ef-8c92-a56ced4523be"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"t+9PdxsHB4kg+RLtJRLGvyEN6vNu8JJ4ydPnL9+y0qYfZs+khU7OmiOcCeckMU/3wZ/+Mb/m1JLTbXMrC6afAg==\",\r\n \"secondaryKey\": \"G0K0CiR78OR+qq3XZZOfsk6P67haaRMD3VuHksXXBUWNN7uI5UVsrj2uYvvj6cqRWdhG4JJh6Y0ZGxtbeujTtQ==\",\r\n \"enabled\": false\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"QtW/xq4Gxm696HKC1j6v3WEYbMgPdEKV6nBkEYlY4rsNxyq+nTl0numqEd/BFZBlCDphTg2XQdUROmMBWTKvZw==\",\r\n \"secondaryKey\": \"jd38Zfh+zyPINttJ+rgT6y4KIJS5n7BmuqJVaNLHwNbLimiK9Cj6+PAxeEL1UBRi36SJHOEeLja/UpgGGX1Vig==\",\r\n \"enabled\": false\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:21 GMT"
+ "Fri, 09 Mar 2018 20:48:56 GMT"
],
"Pragma": [
"no-cache"
@@ -173,7 +179,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAAM7kAAAAAAAAAAA==\""
+ "\"AAAAAAAAOQMAAAAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -185,16 +191,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "47ada625-0b60-4f98-8713-d6add44a7eb8"
+ "ffb9aab9-5f53-4de3-9b54-5412c05473e5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14992"
],
"x-ms-correlation-request-id": [
- "9d200f7a-7515-447a-b400-6f8b27fe1109"
+ "defd209d-ef85-4d6f-97ba-1e844f69f779"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000122Z:9d200f7a-7515-447a-b400-6f8b27fe1109"
+ "WESTUS2:20180309T204856Z:defd209d-ef85-4d6f-97ba-1e844f69f779"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -206,17 +215,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e582aa07-af7e-4983-95b1-55bec6b5d969"
+ "3e2019f8-03b5-4435-b97f-9c95fed1fccd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"t+9PdxsHB4kg+RLtJRLGvyEN6vNu8JJ4ydPnL9+y0qYfZs+khU7OmiOcCeckMU/3wZ/+Mb/m1JLTbXMrC6afAg==\",\r\n \"secondaryKey\": \"G0K0CiR78OR+qq3XZZOfsk6P67haaRMD3VuHksXXBUWNN7uI5UVsrj2uYvvj6cqRWdhG4JJh6Y0ZGxtbeujTtQ==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"QtW/xq4Gxm696HKC1j6v3WEYbMgPdEKV6nBkEYlY4rsNxyq+nTl0numqEd/BFZBlCDphTg2XQdUROmMBWTKvZw==\",\r\n \"secondaryKey\": \"jd38Zfh+zyPINttJ+rgT6y4KIJS5n7BmuqJVaNLHwNbLimiK9Cj6+PAxeEL1UBRi36SJHOEeLja/UpgGGX1Vig==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,7 +237,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:22 GMT"
+ "Fri, 09 Mar 2018 20:48:56 GMT"
],
"Pragma": [
"no-cache"
@@ -237,7 +246,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANC0AAAAAAAAAAA==\""
+ "\"AAAAAAAAOQQAAAAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,16 +258,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "24c269ef-b60a-4a42-bd05-6c5e014b805c"
+ "6a520499-e543-4fda-ab8c-10998fdaa5fd"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14991"
],
"x-ms-correlation-request-id": [
- "092417c5-038d-4131-8ff7-f4d1d4095587"
+ "6817d969-91fc-4402-89bc-16c8df46dfb1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000123Z:092417c5-038d-4131-8ff7-f4d1d4095587"
+ "WESTUS2:20180309T204856Z:6817d969-91fc-4402-89bc-16c8df46dfb1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -270,17 +282,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c97e925c-c759-4c79-bb0e-c3bcd17b7c34"
+ "8ac59158-caa3-4d28-8b08-8aa4167ed407"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"QtW/xq4Gxm696HKC1j6v3WEYbMgPdEKV6nBkEYlY4rsNxyq+nTl0numqEd/BFZBlCDphTg2XQdUROmMBWTKvZw==\",\r\n \"secondaryKey\": \"G0K0CiR78OR+qq3XZZOfsk6P67haaRMD3VuHksXXBUWNN7uI5UVsrj2uYvvj6cqRWdhG4JJh6Y0ZGxtbeujTtQ==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"o2//sqDMLJOdA5nFdpXg23rLJBaNm+Mnt6ak/wN+1qmoAmirpMBp4XXAMLCQ4khGZq5No4f1cqgqcUTbtlfSpA==\",\r\n \"secondaryKey\": \"jd38Zfh+zyPINttJ+rgT6y4KIJS5n7BmuqJVaNLHwNbLimiK9Cj6+PAxeEL1UBRi36SJHOEeLja/UpgGGX1Vig==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -292,7 +304,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:22 GMT"
+ "Fri, 09 Mar 2018 20:48:57 GMT"
],
"Pragma": [
"no-cache"
@@ -301,7 +313,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANC0AAAAAAAAAAA==\""
+ "\"AAAAAAAAOQQAAAAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,16 +325,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "17e32515-dfdd-46d0-bb5e-9d25db117261"
+ "fb255893-d770-48c4-8d2f-5269fe191cb0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14990"
],
"x-ms-correlation-request-id": [
- "ba62d0a9-9193-4662-8f3e-15c679fcf240"
+ "39f89f0b-ecf7-466e-bdb7-296c68f5cc6c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000123Z:ba62d0a9-9193-4662-8f3e-15c679fcf240"
+ "WESTUS2:20180309T204857Z:39f89f0b-ecf7-466e-bdb7-296c68f5cc6c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -334,17 +349,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ab23852-ceb6-4b0b-8d6c-15116890649e"
+ "650c939c-3103-4b32-8498-31c729e8ca06"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"QtW/xq4Gxm696HKC1j6v3WEYbMgPdEKV6nBkEYlY4rsNxyq+nTl0numqEd/BFZBlCDphTg2XQdUROmMBWTKvZw==\",\r\n \"secondaryKey\": \"jd38Zfh+zyPINttJ+rgT6y4KIJS5n7BmuqJVaNLHwNbLimiK9Cj6+PAxeEL1UBRi36SJHOEeLja/UpgGGX1Vig==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"integration\",\r\n \"primaryKey\": \"o2//sqDMLJOdA5nFdpXg23rLJBaNm+Mnt6ak/wN+1qmoAmirpMBp4XXAMLCQ4khGZq5No4f1cqgqcUTbtlfSpA==\",\r\n \"secondaryKey\": \"Nzw9q7ZG+tdbrHsxyuk/GdsR6YH+YtYQvyYlJvq1x7WQENWslVZDx15JvtVqQaQrSoXlfQcBj3OpYAI5lfojeQ==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -356,7 +371,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:23 GMT"
+ "Fri, 09 Mar 2018 20:48:57 GMT"
],
"Pragma": [
"no-cache"
@@ -365,7 +380,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANC0AAAAAAAAAAA==\""
+ "\"AAAAAAAAOQQAAAAAAAAAAA==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -377,16 +392,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9ccc6348-c9ee-4de3-8c01-a56c5b2fefbf"
+ "31a1ccd8-b672-4b06-8eb1-ae3c2eba8891"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14989"
],
"x-ms-correlation-request-id": [
- "3c004d7e-edbd-405c-bda5-7c5748c23e64"
+ "cf83c8b2-ac6e-46ea-9512-9ed3f9d5e772"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000123Z:3c004d7e-edbd-405c-bda5-7c5748c23e64"
+ "WESTUS2:20180309T204857Z:cf83c8b2-ac6e-46ea-9512-9ed3f9d5e772"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -404,7 +422,7 @@
"23"
],
"x-ms-client-request-id": [
- "7701fc05-0e40-4f71-af3b-47e43420ce63"
+ "5d0b0566-b463-413f-9034-4f68418c255f"
],
"If-Match": [
"*"
@@ -414,7 +432,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -426,7 +444,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:22 GMT"
+ "Fri, 09 Mar 2018 20:48:56 GMT"
],
"Pragma": [
"no-cache"
@@ -438,16 +456,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6d92caaf-b8f5-4134-b481-40f2c3f6b40f"
+ "f787f18a-b4b9-4ebd-8f92-5ffcf0d93752"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1197"
],
"x-ms-correlation-request-id": [
- "10f95fe9-e8e9-4f27-8439-b6545b33ec83"
+ "2b2aeac0-81c7-4247-a1a0-51fd56477e61"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000122Z:10f95fe9-e8e9-4f27-8439-b6545b33ec83"
+ "WESTUS2:20180309T204856Z:2b2aeac0-81c7-4247-a1a0-51fd56477e61"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -465,7 +486,7 @@
"24"
],
"x-ms-client-request-id": [
- "e3b950ba-ad98-49ce-afca-6dd4625028b8"
+ "7c25a87b-b8a6-463e-affd-a8052939abd0"
],
"If-Match": [
"*"
@@ -475,7 +496,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -487,7 +508,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:23 GMT"
+ "Fri, 09 Mar 2018 20:48:57 GMT"
],
"Pragma": [
"no-cache"
@@ -499,16 +520,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87567d17-09b1-4bd9-b93a-f38bdd154527"
+ "c75a3d9a-a21e-4794-a83e-762174659b28"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1194"
],
"x-ms-correlation-request-id": [
- "0a19db54-7750-40cb-9fdf-7f5c9d3d0edf"
+ "681c603f-91c8-48d2-9e88-2b148f8f8b9b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000123Z:0a19db54-7750-40cb-9fdf-7f5c9d3d0edf"
+ "WESTUS2:20180309T204857Z:681c603f-91c8-48d2-9e88-2b148f8f8b9b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -520,14 +544,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c85ff74-6187-47fa-b670-1b57d14a226c"
+ "3e868ce7-f991-47a6-a7b2-70b63c1c7195"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -539,7 +563,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:22 GMT"
+ "Fri, 09 Mar 2018 20:48:57 GMT"
],
"Pragma": [
"no-cache"
@@ -551,16 +575,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fb1de864-1a01-413f-ba89-85a3e22b7805"
+ "5e908163-c141-4cdc-9470-dfe028df8c6e"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1196"
],
"x-ms-correlation-request-id": [
- "f4c6e883-ce28-4821-91ab-4cc398864656"
+ "fb318649-d2d9-472e-b1f1-c3264b3fec3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000123Z:f4c6e883-ce28-4821-91ab-4cc398864656"
+ "WESTUS2:20180309T204857Z:fb318649-d2d9-472e-b1f1-c3264b3fec3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -572,14 +599,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ada23884-6bcf-4570-9f8e-e3de8bd20964"
+ "629bd226-7649-4fc9-ade8-88d84b57cea4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -591,7 +618,7 @@
"no-cache"
],
"Date": [
- "Tue, 20 Feb 2018 00:01:23 GMT"
+ "Fri, 09 Mar 2018 20:48:57 GMT"
],
"Pragma": [
"no-cache"
@@ -603,16 +630,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "235db32f-4261-4e60-a5aa-d6d1b926d319"
+ "b4dcf2d8-1594-48f7-9ad4-54e8660b6b19"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1195"
],
"x-ms-correlation-request-id": [
- "2a026f9b-437a-46d6-ad97-ab9c97be36d3"
+ "81b93fe5-f6c4-4d87-a74a-d5712af78d3c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180220T000123Z:2a026f9b-437a-46d6-ad97-ab9c97be36d3"
+ "WESTUS2:20180309T204857Z:81b93fe5-f6c4-4d87-a74a-d5712af78d3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantGitTests/ValidateSaveDeploy.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantGitTests/ValidateSaveDeploy.json
index a6e3144c3ce9e..c5ef3c536b8e9 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantGitTests/ValidateSaveDeploy.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.TenantGitTests/ValidateSaveDeploy.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "53c8c7a4-4be0-4fa0-abd5-4ba3be85860d"
+ "8b82e6e2-fa7c-4c01-9329-e9c9de4f96c4"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADbPUg=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:06 GMT"
+ "Fri, 09 Mar 2018 19:41:18 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADbPUg=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "891b04fc-9496-4bf0-a07e-b92883abb4b9",
- "5c7c0db8-fe0f-4f64-a501-992744f7fb19"
+ "b6710fa7-358b-47d2-b83f-7ada5bc5cd41",
+ "f3db4078-a072-44ad-ba5d-17cbe3bbbbd5"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "efe2d557-7252-4071-9d97-ed8450a43d79"
+ "3dfddd26-86ee-4963-8f06-947fc8137086"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183806Z:efe2d557-7252-4071-9d97-ed8450a43d79"
+ "WESTUS2:20180309T194118Z:3dfddd26-86ee-4963-8f06-947fc8137086"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d662b5f-82c4-4a30-9f03-ff19b8b2bf36"
+ "e683b348-7e0b-41e3-b45f-9845a2dc7db6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADbPUg=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:06 GMT"
+ "Fri, 09 Mar 2018 19:41:18 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADbPUg=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9158f832-cbe2-4704-aaac-8fe51d4ebce9"
+ "136ce406-1fac-4304-b279-f8c128ea7e39"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "09349b30-ec80-45b9-bad4-dbf385e8c9aa"
+ "e4556bb8-c245-44d4-8459-2567c18427ea"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183807Z:09349b30-ec80-45b9-bad4-dbf385e8c9aa"
+ "WESTUS2:20180309T194118Z:e4556bb8-c245-44d4-8459-2567c18427ea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,17 +148,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2a58137-d2d2-4ddf-907e-03798b9a03bb"
+ "fbfc3b4d-4340-4fa1-bf05-4aa5f5b4cc95"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"YYcITzZLwLtdHRM7IN3RYgi+uKVDsabsh1Bf+1EHbOq1fijTIzyOqc2dJJbJCJly8JEvw90sV1MLUd4QoxWtwQ==\",\r\n \"secondaryKey\": \"JNeB9OqAjRcga4j7Hx90X2ONyGyn7uYCIt+y7m7x3g9pkzYGI2w7bIddB9ppoD1IdOFKKvYO5AfPFsBk+paA8g==\",\r\n \"enabled\": true\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"git\",\r\n \"primaryKey\": \"qGAYbHh56pG04Qc4WcaMRnSgPP5CYTBjHo8rDJ38cCQ21QKjtxo5G/595Z2jtYmKGvlJrjl5OALjK4vCQXBSTw==\",\r\n \"secondaryKey\": \"SfuvHnqdk+9RYriLJYraIDzVG4dt29NisAXbDZNTBXGYEWe6+bObjsAwIeQ4N/wJC8z29Zti515L3TRXPz2Yug==\",\r\n \"enabled\": true\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:07 GMT"
+ "Fri, 09 Mar 2018 19:41:18 GMT"
],
"Pragma": [
"no-cache"
@@ -185,16 +191,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "529a4d24-b25e-4edf-862c-f60dc44de0c1"
+ "c93eb91d-8ef9-4967-9978-3c81bae8c4f7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "f901fa44-ee90-40f3-a186-56b65af8e3d8"
+ "17b5fd66-f6cb-4cbd-96dc-16c143113779"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183807Z:f901fa44-ee90-40f3-a186-56b65af8e3d8"
+ "WESTUS2:20180309T194118Z:17b5fd66-f6cb-4cbd-96dc-16c143113779"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -206,17 +215,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cccad844-001b-45ab-ae16-cbe25af9a2fd"
+ "3119769b-0918-48f0-9082-59a431a00c45"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"bd9cbb73d6149f14b8674961b92599356647a287\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2018-02-21T05:28:55.3862581Z\",\r\n \"configurationChangeDate\": \"2018-02-21T00:44:36.9972665Z\"\r\n}",
+ "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6a653428c0e8b8d0726a9d1281a37307166bc3ef\",\r\n \"isExport\": false,\r\n \"isSynced\": false,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2018-02-21T18:39:41.3332656Z\",\r\n \"configurationChangeDate\": \"2018-03-09T19:39:21.3897515Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -228,7 +237,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:07 GMT"
+ "Fri, 09 Mar 2018 19:41:18 GMT"
],
"Pragma": [
"no-cache"
@@ -246,16 +255,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "02ed4488-8f3a-400d-8047-47976c2cd75b"
+ "61ef5630-2b9d-4ee5-ab5f-ffbe3c779675"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "815f41bf-15a0-4df4-8be6-c9f0d90807d3"
+ "5bee2945-de66-4556-a784-dffadc04d915"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183808Z:815f41bf-15a0-4df4-8be6-c9f0d90807d3"
+ "WESTUS2:20180309T194119Z:5bee2945-de66-4556-a784-dffadc04d915"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -267,17 +279,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12b90dd6-c80f-4830-a6e4-74e6d50bee37"
+ "6e40e912-3c62-4bf3-a351-54a608b4e0ea"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6a653428c0e8b8d0726a9d1281a37307166bc3ef\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2018-02-21T18:38:37.4252561Z\",\r\n \"configurationChangeDate\": \"2018-02-21T00:44:36.9972665Z\"\r\n}",
+ "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"db0cb446074fde4d9eecf2ab1e8232ee58f19fb7\",\r\n \"isExport\": true,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2018-03-09T19:41:46.8235795Z\",\r\n \"configurationChangeDate\": \"2018-03-09T19:39:21.3897515Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -289,7 +301,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:39 GMT"
+ "Fri, 09 Mar 2018 19:41:50 GMT"
],
"Pragma": [
"no-cache"
@@ -307,16 +319,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a688ab8-f0eb-49b8-aada-03a75d973cb8"
+ "e7a68df9-fe9a-4bc5-87e1-c67972f45194"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "d3a8b22f-9be6-482e-af0b-1c23a73c8902"
+ "2b5b0fb5-6ce8-40af-b55a-ef38b6dbbbda"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183840Z:d3a8b22f-9be6-482e-af0b-1c23a73c8902"
+ "WESTUS2:20180309T194150Z:2b5b0fb5-6ce8-40af-b55a-ef38b6dbbbda"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -328,17 +343,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8007bea-20a6-402c-9a3a-b770f4b679a6"
+ "90ce4b85-cb96-4da0-aff3-a78be5bb7301"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"6a653428c0e8b8d0726a9d1281a37307166bc3ef\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2018-02-21T18:39:41.3332656Z\",\r\n \"configurationChangeDate\": \"2018-02-21T18:39:41.3332656Z\"\r\n}",
+ "ResponseBody": "{\r\n \"branch\": \"master\",\r\n \"commitId\": \"db0cb446074fde4d9eecf2ab1e8232ee58f19fb7\",\r\n \"isExport\": false,\r\n \"isSynced\": true,\r\n \"isGitEnabled\": true,\r\n \"syncDate\": \"2018-03-09T19:42:50.7243976Z\",\r\n \"configurationChangeDate\": \"2018-03-09T19:42:50.7243976Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -350,7 +365,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:39:41 GMT"
+ "Fri, 09 Mar 2018 19:42:52 GMT"
],
"Pragma": [
"no-cache"
@@ -368,16 +383,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9438cbdb-7644-46c2-af94-f8011d0d4779"
+ "00f4adbf-150c-4395-a9e3-4b90853a105c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14992"
],
"x-ms-correlation-request-id": [
- "5e51465a-0448-4062-91db-12a4b1d48721"
+ "4e6f9cc8-4dd3-4f10-8771-84b2228f47f1"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183941Z:5e51465a-0448-4062-91db-12a4b1d48721"
+ "WESTUS2:20180309T194252Z:4e6f9cc8-4dd3-4f10-8771-84b2228f47f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -395,17 +413,17 @@
"26"
],
"x-ms-client-request-id": [
- "d4099cba-443e-4886-93cd-7559f2ed17a0"
+ "9aadc546-f11b-4c55-8a43-5a2958188857"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"Id\": \"5a8dbc9350f4b8121cab0000\"\r\n}",
+ "ResponseBody": "{\r\n \"Id\": \"5aa2e35f50f4b800a0f442e8\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"33"
@@ -420,13 +438,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:09 GMT"
+ "Fri, 09 Mar 2018 19:41:19 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5a8dbc9350f4b8121cab0000?api-version=2018-01-01"
+ "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5aa2e35f50f4b800a0f442e8?api-version=2018-01-01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -435,32 +453,35 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b3bc912b-c8bb-4735-9a40-6d3222b6b9cf"
+ "85ad795e-6bfa-424d-aaaa-622e160e57bf"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "5edff83a-a726-4799-8ec4-2a2e46e81ff7"
+ "3d18c883-1348-40e4-9ef4-62b068d8e87a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183810Z:5edff83a-a726-4799-8ec4-2a2e46e81ff7"
+ "WESTUS2:20180309T194119Z:3d18c883-1348-40e4-9ef4-62b068d8e87a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5a8dbc9350f4b8121cab0000?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVhOGRiYzkzNTBmNGI4MTIxY2FiMDAwMD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5aa2e35f50f4b800a0f442e8?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVhYTJlMzVmNTBmNGI4MDBhMGY0NDJlOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"5a8dbc9350f4b8121cab0000\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2018-02-21T18:38:11.507Z\",\r\n \"updated\": \"2018-02-21T18:38:37.807Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit 6a653428c0e8b8d0726a9d1281a37307166bc3ef.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5aa2e35f50f4b800a0f442e8\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2018-03-09T19:41:19.183Z\",\r\n \"updated\": \"2018-03-09T19:41:44.82Z\",\r\n \"resultInfo\": \"The configuration was successfully saved to master as commit db0cb446074fde4d9eecf2ab1e8232ee58f19fb7.\",\r\n \"error\": null,\r\n \"actionLog\": []\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -472,7 +493,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:39 GMT"
+ "Fri, 09 Mar 2018 19:41:49 GMT"
],
"Pragma": [
"no-cache"
@@ -490,16 +511,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de04e770-9ea9-43f6-8327-1a15c9297583"
+ "e371ff99-1005-4bac-8f45-01a9d62d269a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-correlation-request-id": [
- "ffe9a7d0-80f8-421d-b963-8b43bb949a27"
+ "d017b1f1-e708-4ffa-9e09-477d23ff184f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183840Z:ffe9a7d0-80f8-421d-b963-8b43bb949a27"
+ "WESTUS2:20180309T194149Z:d017b1f1-e708-4ffa-9e09-477d23ff184f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -517,17 +541,17 @@
"26"
],
"x-ms-client-request-id": [
- "cf0d13dc-5fa3-486e-8302-3fe3862f9f5e"
+ "f0f12924-f00e-4bf0-abeb-681b0db03a2d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"Id\": \"5a8dbcb350f4b8121cab0003\"\r\n}",
+ "ResponseBody": "{\r\n \"Id\": \"5aa2e37e50f4b800a0f442eb\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"33"
@@ -542,13 +566,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:38:40 GMT"
+ "Fri, 09 Mar 2018 19:41:51 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5a8dbcb350f4b8121cab0003?api-version=2018-01-01"
+ "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5aa2e37e50f4b800a0f442eb?api-version=2018-01-01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -557,32 +581,35 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "610744e7-2c7a-4e88-9f11-71fb02812f00"
+ "c97e1d44-a7db-4c30-8869-f67e34594d30"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "c14f3f6b-0d09-45b8-af9b-bab15eb14049"
+ "97d1d036-2fe8-40a3-a324-3d8dbf4154f7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183840Z:c14f3f6b-0d09-45b8-af9b-bab15eb14049"
+ "WESTUS2:20180309T194151Z:97d1d036-2fe8-40a3-a324-3d8dbf4154f7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5a8dbcb350f4b8121cab0003?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVhOGRiY2IzNTBmNGI4MTIxY2FiMDAwMz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5aa2e37e50f4b800a0f442eb?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVhYTJlMzdlNTBmNGI4MDBhMGY0NDJlYj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"5a8dbcb350f4b8121cab0003\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2018-02-21T18:38:43.593Z\",\r\n \"updated\": \"2018-02-21T18:38:54.93Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"starter\"\r\n },\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"unlimited\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5aa2e37e50f4b800a0f442eb\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2018-03-09T19:41:50.59Z\",\r\n \"updated\": \"2018-03-09T19:42:01.163Z\",\r\n \"resultInfo\": \"Validation is successfull\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"starter\"\r\n },\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"unlimited\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -594,7 +621,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:39:10 GMT"
+ "Fri, 09 Mar 2018 19:42:20 GMT"
],
"Pragma": [
"no-cache"
@@ -612,16 +639,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c597d0c-122a-4b61-a3b5-9ea1d5c1a57b"
+ "d0cd06d5-a89e-4e01-8ca8-ae0dce85da20"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14994"
],
"x-ms-correlation-request-id": [
- "c1c6213d-ed43-42d1-abc4-2cb0ceef2b71"
+ "2c81a3c2-7ac6-409b-b54c-de1347f62c61"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183911Z:c1c6213d-ed43-42d1-abc4-2cb0ceef2b71"
+ "WESTUS2:20180309T194221Z:2c81a3c2-7ac6-409b-b54c-de1347f62c61"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -639,17 +669,17 @@
"26"
],
"x-ms-client-request-id": [
- "ccea4708-ac2d-4893-9beb-d2571cf21008"
+ "0f0aacca-34dc-46b7-8e22-f7f13acbf3ff"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"Id\": \"5a8dbcd250f4b8121cab0006\"\r\n}",
+ "ResponseBody": "{\r\n \"Id\": \"5aa2e39d50f4b800a0f442ee\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"33"
@@ -664,13 +694,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:39:10 GMT"
+ "Fri, 09 Mar 2018 19:42:21 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5a8dbcd250f4b8121cab0006?api-version=2018-01-01"
+ "https://management.azure.com/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5aa2e39d50f4b800a0f442ee?api-version=2018-01-01"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -679,32 +709,35 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6ea5c13a-c275-44bf-ae19-a4a6bd9a4a91"
+ "3ccc54ee-b6dc-4bf7-8c29-0f1eb978e80a"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "99b15154-4ee7-4424-bef4-ec02f6e6f4e0"
+ "bd94073b-de75-4c33-a568-4643ff6f9e5c"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183911Z:99b15154-4ee7-4424-bef4-ec02f6e6f4e0"
+ "WESTUS2:20180309T194222Z:bd94073b-de75-4c33-a568-4643ff6f9e5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5a8dbcd250f4b8121cab0006?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVhOGRiY2QyNTBmNGI4MTIxY2FiMDAwNj9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/tenant/configuration/operationResults/5aa2e39d50f4b800a0f442ee?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS90ZW5hbnQvY29uZmlndXJhdGlvbi9vcGVyYXRpb25SZXN1bHRzLzVhYTJlMzlkNTBmNGI4MDBhMGY0NDJlZT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"5a8dbcd250f4b8121cab0006\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2018-02-21T18:39:14.103Z\",\r\n \"updated\": \"2018-02-21T18:39:41.727Z\",\r\n \"resultInfo\": \"Latest commit 6a653428c0e8b8d0726a9d1281a37307166bc3ef was successfully deployed from master. Objects created: 0, updated: 2, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"starter\"\r\n },\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"unlimited\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"5aa2e39d50f4b800a0f442ee\",\r\n \"status\": \"Succeeded\",\r\n \"started\": \"2018-03-09T19:42:21.51Z\",\r\n \"updated\": \"2018-03-09T19:42:48.723Z\",\r\n \"resultInfo\": \"Latest commit db0cb446074fde4d9eecf2ab1e8232ee58f19fb7 was successfully deployed from master. Objects created: 0, updated: 2, deleted: 0. Previous configuration was saved to the 'ConfigurationBackup' branch.\",\r\n \"error\": null,\r\n \"actionLog\": [\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"starter\"\r\n },\r\n {\r\n \"objectType\": \"ProductSpecificationContract\",\r\n \"action\": \"Updated\",\r\n \"objectKey\": \"unlimited\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -716,7 +749,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 18:39:41 GMT"
+ "Fri, 09 Mar 2018 19:42:51 GMT"
],
"Pragma": [
"no-cache"
@@ -734,16 +767,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "747eeab1-1798-4aec-8fe5-0fe58450c657"
+ "02e45ccb-7a87-48fc-be52-81fa9f7877cd"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14993"
],
"x-ms-correlation-request-id": [
- "65222bd6-d4fc-4f76-bf8f-a5a3144539c4"
+ "4b8676f8-0705-4252-9b1a-da1d0c60e9aa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T183941Z:65222bd6-d4fc-4f76-bf8f-a5a3144539c4"
+ "WESTUS2:20180309T194252Z:4b8676f8-0705-4252-9b1a-da1d0c60e9aa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/CreateListUpdateDelete.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/CreateListUpdateDelete.json
index f4b31540aa998..f438833f96c77 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/CreateListUpdateDelete.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/CreateListUpdateDelete.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "66a2f600-7f93-44e6-b0a2-77660cf7bdf6"
+ "6205aee6-db36-4da7-be02-90a4b1706355"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:43 GMT"
+ "Fri, 09 Mar 2018 21:50:10 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3d169c02-bdc7-49cb-8919-6337baf2df5e",
- "881b3d60-d398-4990-8ce9-272e9be7297d"
+ "e58aa9eb-c658-45ad-8021-93827dc6de05",
+ "f29706ae-0f56-4fc2-a60d-04736fb0523b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "0bf39710-ef1f-4906-b32c-295107af83c3"
+ "a09d43ab-2d50-4431-825c-37e070dc6cad"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002643Z:0bf39710-ef1f-4906-b32c-295107af83c3"
+ "WESTUS2:20180309T215011Z:a09d43ab-2d50-4431-825c-37e070dc6cad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c0d0b31-f715-4ed9-b05b-1f3b4cb43578"
+ "ff7a69b9-608d-4d5a-abd9-3a3c8dedd651"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:43 GMT"
+ "Fri, 09 Mar 2018 21:50:10 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d7bcd16a-3e71-41b3-b332-e62de0fb3311"
+ "f4a67597-28e2-40af-b5c7-29fe0ffa1b2b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "8c349f43-f7f7-4746-b42e-29ddcdd2437f"
+ "15a23257-44d4-4938-929d-a56dd2d85164"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002643Z:8c349f43-f7f7-4746-b42e-29ddcdd2437f"
+ "WESTUS2:20180309T215011Z:15a23257-44d4-4938-929d-a56dd2d85164"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e7f7954-0678-4d8f-ae8a-fc26fad9b22e"
+ "cfbbee99-7c25-49f5-9405-e9591b116930"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:44 GMT"
+ "Fri, 09 Mar 2018 21:50:11 GMT"
],
"Pragma": [
"no-cache"
@@ -182,47 +188,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1b06a927-c7ce-4a5b-8cec-59895e46257b"
+ "34b279d5-bee5-4f81-9090-193b190052b2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "2016801b-e097-4134-9341-89b800525fd4"
+ "bbf32f34-666b-406c-b7aa-90bc8b76455e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002644Z:2016801b-e097-4134-9341-89b800525fd4"
+ "WESTUS2:20180309T215011Z:bbf32f34-666b-406c-b7aa-90bc8b76455e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"userNote2437\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"userFirstName9474\",\r\n \"lastName\": \"userLastName3808\",\r\n \"password\": \"userPassword2808\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"userNote3688\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"firstName\": \"userFirstName362\",\r\n \"lastName\": \"userLastName4784\",\r\n \"password\": \"userPassword5869\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "232"
+ "231"
],
"x-ms-client-request-id": [
- "df5f9fbe-7f4a-400b-ae3b-4627f61e439d"
+ "e30c5859-0992-4b00-bd6e-c814f58584d9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4306\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName9474\",\r\n \"lastName\": \"userLastName3808\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-21T00:26:46.133Z\",\r\n \"note\": \"userNote2437\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId8737\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName362\",\r\n \"lastName\": \"userLastName4784\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T21:50:13.983Z\",\r\n \"note\": \"userNote3688\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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}",
"ResponseHeaders": {
"Content-Length": [
- "1091"
+ "1090"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -234,13 +243,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:45 GMT"
+ "Fri, 09 Mar 2018 21:50:11 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANhUAAAAAAAA2Fw==\""
+ "\"AAAAAAAAOT0AAAAAAAA5Pw==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -249,38 +258,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d620943a-b093-4d60-b25a-68535cb0cf4a"
+ "cc4dafbd-14b4-4fc9-a75c-c31d9694f8c2"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "435af7c5-3d22-491f-8496-9384fe1a2b6e"
+ "5d1ad2c0-1b2d-4bb5-ba7c-1c72c8c62afb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002645Z:435af7c5-3d22-491f-8496-9384fe1a2b6e"
+ "WESTUS2:20180309T215012Z:5d1ad2c0-1b2d-4bb5-ba7c-1c72c8c62afb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "590a72cc-4f5f-46ae-b4f1-8c97a296c736"
+ "89caccd1-e391-4481-9389-849dfd0ed8e0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId4306\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName9474\",\r\n \"lastName\": \"userLastName3808\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-21T00:26:46.133Z\",\r\n \"note\": \"userNote2437\",\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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId8737\",\r\n \"properties\": {\r\n \"firstName\": \"userFirstName362\",\r\n \"lastName\": \"userLastName4784\",\r\n \"email\": \"contoso@microsoft.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T21:50:13.983Z\",\r\n \"note\": \"userNote3688\",\r\n \"identities\": [\r\n {\r\n \"provider\": \"Basic\",\r\n \"id\": \"contoso@microsoft.com\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -292,7 +304,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:45 GMT"
+ "Fri, 09 Mar 2018 21:50:12 GMT"
],
"Pragma": [
"no-cache"
@@ -301,7 +313,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANhUAAAAAAAA2Fw==\""
+ "\"AAAAAAAAOT0AAAAAAAA5Pw==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -313,35 +325,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "52d270a2-9d3d-4d09-93b0-d1c449235840"
+ "48964a9a-f1a9-45e4-85d3-040f821dd82d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14996"
],
"x-ms-correlation-request-id": [
- "b5b24717-204b-470c-9a14-ffae628eea26"
+ "e4ab43c6-533a-428a-bec9-79e7a94f8183"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002645Z:b5b24717-204b-470c-9a14-ffae628eea26"
+ "WESTUS2:20180309T215012Z:e4ab43c6-533a-428a-bec9-79e7a94f8183"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "64b2d633-88c7-4ef2-a1a1-d194b9b1a415"
+ "6f331ab6-d96b-4845-b9db-b63166722c4d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"User not found.\",\r\n \"details\": null\r\n }\r\n}",
@@ -359,7 +374,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:46 GMT"
+ "Fri, 09 Mar 2018 21:50:13 GMT"
],
"Pragma": [
"no-cache"
@@ -371,16 +386,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea235c08-df01-44ca-9e28-63deea57570d"
+ "b91a2207-232c-43ba-9639-19f22233586f"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14994"
],
"x-ms-correlation-request-id": [
- "f111bfd3-203d-4d3a-a2ac-ff03e16449d7"
+ "9d3e7878-2a5a-4182-a25d-fdd0e1dfad15"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002646Z:f111bfd3-203d-4d3a-a2ac-ff03e16449d7"
+ "WESTUS2:20180309T215013Z:9d3e7878-2a5a-4182-a25d-fdd0e1dfad15"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 404
@@ -392,14 +410,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1f2bf80a-7ab1-493c-ba52-35d39e52ac99"
+ "bce1eed0-1faa-42b5-8c1e-b92b3670add9"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
@@ -414,7 +432,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:45 GMT"
+ "Fri, 09 Mar 2018 21:50:12 GMT"
],
"Pragma": [
"no-cache"
@@ -432,38 +450,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6b0baf5-cdd9-403b-846a-84f0ea22f846"
+ "94094538-6282-47e7-8c3d-5aa3ba30b725"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14995"
],
"x-ms-correlation-request-id": [
- "8b5a6f56-57a6-4d28-a1b0-b44792980229"
+ "5bff7bd5-6fe5-4839-a89e-48c2b11f1c91"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002645Z:8b5a6f56-57a6-4d28-a1b0-b44792980229"
+ "WESTUS2:20180309T215013Z:5bff7bd5-6fe5-4839-a89e-48c2b11f1c91"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306/generateSsoUrl?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2L2dlbmVyYXRlU3NvVXJsP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737/generateSsoUrl?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3L2dlbmVyYXRlU3NvVXJsP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ec6a39b-6edf-41df-a3bb-08d102391d38"
+ "1b47f465-c0f0-4c7a-b134-30bbb78f02bf"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": \"https://sdktestservice.portal.azure-api.net/signin-sso?token=userId4306%26201802210031%266m6kyxsJY%2f5laUpeZZoelEB%2bbjfQFkG2N1SxKkD156E1aXy1URfz2VgJu9SFAT6e7S9lzg50LUpYl37sr8Akig%3d%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"https://sdktestservice.portal.azure-api.net/signin-sso?token=userId8737%26201803092155%26UKnNF2Tq3Ev6eQGjf%2fwFLcnomo4eIFHrcyGdN8j8q8XJAVwt%2fpV9Efv8n3CY%2bY9Cc5T1dHlKvr1V7Bdv39rw9A%3d%3d\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -475,7 +496,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:45 GMT"
+ "Fri, 09 Mar 2018 21:50:12 GMT"
],
"Pragma": [
"no-cache"
@@ -493,25 +514,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e29ca931-7ee6-441a-af7e-14306a3778b7"
+ "8e9a9039-17e6-4c51-b2c5-ea80810f7f8b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "7f8e4d16-b61c-4339-b102-8fea7d1c27af"
+ "8fd8f8a0-bcf2-40db-801c-111892bcd3e6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002645Z:7f8e4d16-b61c-4339-b102-8fea7d1c27af"
+ "WESTUS2:20180309T215013Z:8fd8f8a0-bcf2-40db-801c-111892bcd3e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306/token?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2L3Rva2VuP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737/token?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3L3Rva2VuP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2018-03-23T00:26:46.1691024Z\"\r\n}",
+ "RequestBody": "{\r\n \"keyType\": \"primary\",\r\n \"expiry\": \"2018-03-19T21:50:13.3340991Z\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -520,17 +544,17 @@
"73"
],
"x-ms-client-request-id": [
- "ea39970e-3c8d-4748-8fad-cf833689ad09"
+ "6bcba040-e1e4-4fc1-b233-ada8870723c6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": \"userId4306&201803230026&8wvutQsAMNnmahRrmK71JrP0VYqzSq227au/5LwQhT7gF5iUQSxqyukJnHJzEuUoH9asbWLrZ0gF9xuJ2NfofA==\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": \"userId8737&201803192150&q7Uf1YHZ0wyb69vMQiSykNfl5Jz1Ea3nKmvrFS1VAvysVVzh+KlS160dBm6BPoUaRnBp9qybqunqrgpMjiyqZw==\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -542,7 +566,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:45 GMT"
+ "Fri, 09 Mar 2018 21:50:12 GMT"
],
"Pragma": [
"no-cache"
@@ -560,38 +584,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3c04e33d-4107-487d-a348-cee932ff1fbd"
+ "1d819e0d-2db1-4d9b-b851-7a4c3e772d07"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "64f8dc90-cf3b-4d83-a1c7-ee53d59b25ec"
+ "956734eb-de5b-4ae5-8a2c-0817889d16f3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002645Z:64f8dc90-cf3b-4d83-a1c7-ee53d59b25ec"
+ "WESTUS2:20180309T215013Z:956734eb-de5b-4ae5-8a2c-0817889d16f3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306?deleteSubscriptions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737?deleteSubscriptions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5129b2ff-2c73-4387-a0f7-1bde4ed0dcf6"
+ "af06fa35-7be4-46e0-b297-63d21e4df69d"
],
"If-Match": [
- "\"AAAAAAAANhUAAAAAAAA2Fw==\""
+ "\"AAAAAAAAOT0AAAAAAAA5Pw==\""
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -606,7 +633,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:46 GMT"
+ "Fri, 09 Mar 2018 21:50:12 GMT"
],
"Pragma": [
"no-cache"
@@ -618,28 +645,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d004763e-af65-45d9-9bc6-7a3d020ef28d"
+ "f4918289-4596-43f8-bb18-2f653f6aba9b"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "10cf1283-0135-42d1-996c-e81bf0c4d12a"
+ "d84e6bf6-386f-4d72-9863-7dc0693993a2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002646Z:10cf1283-0135-42d1-996c-e81bf0c4d12a"
+ "WESTUS2:20180309T215013Z:d84e6bf6-386f-4d72-9863-7dc0693993a2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId4306?deleteSubscriptions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ0MzA2P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8737?deleteSubscriptions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4NzM3P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6dd09440-cafc-4722-8a76-b63506cb057c"
+ "37e4c5e9-598b-468e-b103-62f4921ea0ba"
],
"If-Match": [
"*"
@@ -649,7 +679,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -661,7 +691,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:46 GMT"
+ "Fri, 09 Mar 2018 21:50:13 GMT"
],
"Pragma": [
"no-cache"
@@ -673,16 +703,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fc4af8ad-b40f-4597-9b09-1d110852832a"
+ "2b75aa95-d2af-4e50-b731-0914a87a5f90"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "3f363e2a-f458-4a08-b5fd-1d6639b0520e"
+ "86c73cd7-f259-4999-82fc-fcbb8c210a3d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002646Z:3f363e2a-f458-4a08-b5fd-1d6639b0520e"
+ "WESTUS2:20180309T215014Z:86c73cd7-f259-4999-82fc-fcbb8c210a3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 204
@@ -690,11 +723,11 @@
],
"Names": {
"CreateListUpdateDelete": [
- "userId4306",
- "userFirstName9474",
- "userLastName3808",
- "userPassword2808",
- "userNote2437"
+ "userId8737",
+ "userFirstName362",
+ "userLastName4784",
+ "userPassword5869",
+ "userNote3688"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/GroupsListAddRemove.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/GroupsListAddRemove.json
index 0c57cc9cf0d9d..c0bba61e547ae 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/GroupsListAddRemove.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/GroupsListAddRemove.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "135644eb-a9af-4e7d-86b5-3f47d1f52efb"
+ "2d8be3e4-3704-4e1d-96a0-0fcbb42bd933"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:16 GMT"
+ "Fri, 09 Mar 2018 19:52:41 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f552fb93-6a29-4e2c-ac9d-7bbea676a11b",
- "dcd135f2-2423-4e18-86e4-03645f6f464d"
+ "897487d6-b576-4649-9af3-651164f9381a",
+ "aeb95dc6-1a21-4d94-90b4-b214b46f05dd"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "4c8db419-d274-4351-bbd1-55c165b8d182"
+ "cc10c724-9de7-4e76-a660-69f3efcf5a93"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002616Z:4c8db419-d274-4351-bbd1-55c165b8d182"
+ "WESTUS2:20180309T195241Z:cc10c724-9de7-4e76-a660-69f3efcf5a93"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c104d22e-c3a1-421a-bdf1-f889552a9de5"
+ "2e7849ae-7081-482d-b44c-2fff42cbbe8b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:16 GMT"
+ "Fri, 09 Mar 2018 19:52:41 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,25 +124,28 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "12d90fd9-e955-4a54-9df1-9111f22b8753"
+ "9251fe86-c520-4a2c-8cb9-9ba114520adf"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14961"
+ "14998"
],
"x-ms-correlation-request-id": [
- "ae596fc8-f5ee-45e8-be12-ce2c03e36334"
+ "a34c9db1-4feb-429c-a5e0-f0e2f9027e45"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002616Z:ae596fc8-f5ee-45e8-be12-ce2c03e36334"
+ "WESTUS2:20180309T195241Z:a34c9db1-4feb-429c-a5e0-f0e2f9027e45"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDQ4NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDEzNDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"groupName7073\",\r\n \"type\": \"custom\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"groupName5483\",\r\n \"type\": \"custom\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -148,17 +154,17 @@
"87"
],
"x-ms-client-request-id": [
- "1adfaaeb-84a6-46e0-8178-1c90832668b8"
+ "dab7273e-766f-440c-b31a-7c93d5f66b3c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId4851\",\r\n \"properties\": {\r\n \"displayName\": \"groupName7073\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId1345\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5483\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"417"
@@ -173,13 +179,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:17 GMT"
+ "Fri, 09 Mar 2018 19:52:42 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANfk=\""
+ "\"AAAAAAAAONg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -188,38 +194,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "519c87bd-37b6-4c62-997c-49794a83d177"
+ "3d86c06b-4f07-4f13-bb88-859a510049e6"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "eb684806-3f00-423a-96df-a867189f859c"
+ "54970fb1-1dd0-4c51-8dcc-51d94878ede4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002617Z:eb684806-3f00-423a-96df-a867189f859c"
+ "WESTUS2:20180309T195242Z:54970fb1-1dd0-4c51-8dcc-51d94878ede4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDQ4NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDEzNDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d6d8a51-0906-417c-abd2-f85e25a1ef28"
+ "766ed484-7c9c-4655-93a9-27a1bcceef3d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId4851\",\r\n \"properties\": {\r\n \"displayName\": \"groupName7073\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups\",\r\n \"name\": \"groupId1345\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5483\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -231,7 +240,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:17 GMT"
+ "Fri, 09 Mar 2018 19:52:42 GMT"
],
"Pragma": [
"no-cache"
@@ -240,7 +249,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAAAANfk=\""
+ "\"AAAAAAAAONg=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -252,47 +261,50 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de0ed73e-bd7c-44be-b5d6-21e560bbbd23"
+ "711695e3-755b-493f-b7bf-0b21cc50d5ed"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14960"
+ "14997"
],
"x-ms-correlation-request-id": [
- "b49fd395-6e4c-4074-8475-ed48056b064b"
+ "0f78b4a4-9ff1-461b-bcc4-e20dfa710845"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002617Z:b49fd395-6e4c-4074-8475-ed48056b064b"
+ "WESTUS2:20180309T195242Z:0f78b4a4-9ff1-461b-bcc4-e20dfa710845"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4MTIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ2MDA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"note6684\",\r\n \"email\": \"ivan.ivanov1314@contoso.com\",\r\n \"firstName\": \"Ivan6413\",\r\n \"lastName\": \"Ivanov786\",\r\n \"password\": \"pwd6590\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"active\",\r\n \"note\": \"note2737\",\r\n \"email\": \"ivan.ivanov5129@contoso.com\",\r\n \"firstName\": \"Ivan4617\",\r\n \"lastName\": \"Ivanov6808\",\r\n \"password\": \"pwd7963\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "209"
+ "210"
],
"x-ms-client-request-id": [
- "394513bf-61d9-4000-a841-661ba47b9d2f"
+ "4b6ab05a-70eb-4c78-8a06-2f671585ef0b"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId8121\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan6413\",\r\n \"lastName\": \"Ivanov786\",\r\n \"email\": \"ivan.ivanov1314@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-21T00:26:19.1Z\",\r\n \"note\": \"note6684\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": \"ivan.ivanov1314@contoso.com\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"userId6007\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan4617\",\r\n \"lastName\": \"Ivanov6808\",\r\n \"email\": \"ivan.ivanov5129@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T19:52:44.717Z\",\r\n \"note\": \"note2737\",\r\n \"groups\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/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\": \"ivan.ivanov5129@contoso.com\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1081"
+ "1084"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -304,13 +316,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:17 GMT"
+ "Fri, 09 Mar 2018 19:52:42 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANfwAAAAAAAA1/g==\""
+ "\"AAAAAAAAONsAAAAAAAA43Q==\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -319,38 +331,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18feb75e-e66f-421f-b5d8-88ada0f28760"
+ "6d011411-0082-4d1f-bbd4-5b2839decfcb"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "3ddb9409-3087-41b8-b2ef-cacb916b0d58"
+ "2e982893-8d19-4916-82f7-38313e1ce359"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002618Z:3ddb9409-3087-41b8-b2ef-cacb916b0d58"
+ "WESTUS2:20180309T195243Z:2e982893-8d19-4916-82f7-38313e1ce359"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/groups?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4MTIxL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/groups?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ2MDA3L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9cb74fd-391c-4e18-9948-c3cc3ef2bd7d"
+ "4f78919c-a23a-41b2-8b13-b8d85e261f80"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/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 \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/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 \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -362,7 +377,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:18 GMT"
+ "Fri, 09 Mar 2018 19:52:43 GMT"
],
"Pragma": [
"no-cache"
@@ -380,38 +395,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3636c38-2f82-46b0-90de-a4cc36ecd7fd"
+ "3a18411a-dee3-4ffe-8edb-02616b06f530"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14959"
+ "14996"
],
"x-ms-correlation-request-id": [
- "90918324-253d-46f9-b7e6-54c510750232"
+ "0ede790b-091a-4613-9f12-b833e0bf2132"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002618Z:90918324-253d-46f9-b7e6-54c510750232"
+ "WESTUS2:20180309T195243Z:0ede790b-091a-4613-9f12-b833e0bf2132"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/groups?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4MTIxL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/groups?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ2MDA3L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c606471-b974-407a-980f-c8d410b317fc"
+ "c623c603-1806-48ee-8974-f5a94d741b21"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/groups/groupId4851\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"groupId4851\",\r\n \"properties\": {\r\n \"displayName\": \"groupName7073\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/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/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/groups/groupId1345\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/groups\",\r\n \"name\": \"groupId1345\",\r\n \"properties\": {\r\n \"displayName\": \"groupName5483\",\r\n \"description\": null,\r\n \"builtIn\": false,\r\n \"type\": \"custom\",\r\n \"externalId\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -423,7 +441,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:18 GMT"
+ "Fri, 09 Mar 2018 19:52:43 GMT"
],
"Pragma": [
"no-cache"
@@ -441,38 +459,41 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6d7b9bb3-e168-4936-997b-9214aca060e5"
+ "d6cedbd3-dd23-49e5-bd4a-92781580dd56"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14958"
+ "14995"
],
"x-ms-correlation-request-id": [
- "239cba19-6a96-4beb-9f94-6b2cfe5f9b79"
+ "33bdca5f-dabb-4a17-bc2f-5d43e56f421e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002619Z:239cba19-6a96-4beb-9f94-6b2cfe5f9b79"
+ "WESTUS2:20180309T195244Z:33bdca5f-dabb-4a17-bc2f-5d43e56f421e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/groups?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4MTIxL2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/groups?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ2MDA3L2dyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "652a73b1-91b1-48b5-adb7-a09b922d51cc"
+ "dc09d217-d203-4807-8000-65015790f21d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121/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 \"nextLink\": \"\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007/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 \"nextLink\": \"\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -484,7 +505,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:19 GMT"
+ "Fri, 09 Mar 2018 19:52:44 GMT"
],
"Pragma": [
"no-cache"
@@ -502,41 +523,44 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "15b20e45-94f8-4fea-bdc0-9278edb0312d"
+ "ae4e6dc9-889d-4674-b7cc-144d970cb847"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14957"
+ "14994"
],
"x-ms-correlation-request-id": [
- "3f3526e9-a9fc-4ed8-a0ac-9b237fc5e213"
+ "aeebf7ca-0b5c-4a2a-811f-82e3bc4eb2dc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002619Z:3f3526e9-a9fc-4ed8-a0ac-9b237fc5e213"
+ "WESTUS2:20180309T195244Z:aeebf7ca-0b5c-4a2a-811f-82e3bc4eb2dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851/users/userId8121?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDQ4NTEvdXNlcnMvdXNlcklkODEyMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345/users/userId6007?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDEzNDUvdXNlcnMvdXNlcklkNjAwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "PUT",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3c9ddaa-e7bd-41ce-a9f0-9bcefdc48034"
+ "c51f146c-6267-4bff-aa70-6deecc492381"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851/users/userId8121\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"userId8121\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan6413\",\r\n \"lastName\": \"Ivanov786\",\r\n \"email\": \"ivan.ivanov1314@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-02-21T00:26:19.1Z\",\r\n \"note\": \"note6684\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345/users/userId6007\",\r\n \"type\": \"Microsoft.ApiManagement/service/groups/users\",\r\n \"name\": \"userId6007\",\r\n \"properties\": {\r\n \"firstName\": \"Ivan4617\",\r\n \"lastName\": \"Ivanov6808\",\r\n \"email\": \"ivan.ivanov5129@contoso.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2018-03-09T19:52:44.717Z\",\r\n \"note\": \"note2737\",\r\n \"groups\": [],\r\n \"identities\": []\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "552"
+ "555"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -548,13 +572,13 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:18 GMT"
+ "Fri, 09 Mar 2018 19:52:43 GMT"
],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"AAAAAAAANgY=\""
+ "\"AAAAAAAAOOQ=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -563,35 +587,38 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fde01d05-392f-4388-afe0-c9525c6b7799"
+ "9bbc83dd-d9e3-4bf8-afef-43345bc17d97"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-correlation-request-id": [
- "334b05f6-c9ec-41af-9dc0-05bf0fd0e164"
+ "ea18a097-b4ac-426a-9ce6-4d7009f10ed4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002619Z:334b05f6-c9ec-41af-9dc0-05bf0fd0e164"
+ "WESTUS2:20180309T195243Z:ea18a097-b4ac-426a-9ce6-4d7009f10ed4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851/users/userId8121?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDQ4NTEvdXNlcnMvdXNlcklkODEyMT9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345/users/userId6007?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDEzNDUvdXNlcnMvdXNlcklkNjAwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f4efd2d-ca60-489d-909e-75ef07b02cd5"
+ "e0aacb48-2f16-44fd-84d0-d2657afdfe8c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -606,7 +633,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:19 GMT"
+ "Fri, 09 Mar 2018 19:52:44 GMT"
],
"Pragma": [
"no-cache"
@@ -618,28 +645,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9667b09b-22e6-4df8-ab41-516be5d21595"
+ "1e19c2f8-af3c-48b2-905f-e8dfd08d2836"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1195"
],
"x-ms-correlation-request-id": [
- "19da1922-7131-4651-8480-d4eb20cdcca6"
+ "abd02b1d-e553-4629-a974-86e8ab8a8591"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002619Z:19da1922-7131-4651-8480-d4eb20cdcca6"
+ "WESTUS2:20180309T195244Z:abd02b1d-e553-4629-a974-86e8ab8a8591"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId8121?deleteSubscriptions=true&api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ4MTIxP2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/userId6007?deleteSubscriptions=true&api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS91c2Vycy91c2VySWQ2MDA3P2RlbGV0ZVN1YnNjcmlwdGlvbnM9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTAxLTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8c84275-0783-457e-8da1-343747af5adc"
+ "905f5d03-be3e-437e-9d76-7ee3b42d11e5"
],
"If-Match": [
"*"
@@ -649,7 +679,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -664,7 +694,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:19 GMT"
+ "Fri, 09 Mar 2018 19:52:44 GMT"
],
"Pragma": [
"no-cache"
@@ -676,28 +706,31 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e1b91bfa-e524-44e4-b6c2-fe754e2d7b18"
+ "5b272d52-18bb-477b-b626-eac22bd13b50"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1194"
],
"x-ms-correlation-request-id": [
- "ac66017a-eee4-44f4-bfb1-cda41ccb8ca2"
+ "94d9b107-3fbe-4b2a-86f7-841d87d87ea6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002620Z:ac66017a-eee4-44f4-bfb1-cda41ccb8ca2"
+ "WESTUS2:20180309T195244Z:94d9b107-3fbe-4b2a-86f7-841d87d87ea6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId4851?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDQ4NTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/groups/groupId1345?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYmFiMDhlMTEtN2IxMi00MzU0LTlmZDEtNGI1ZDY0ZDQwYjY4L3Jlc291cmNlR3JvdXBzL0FwaS1EZWZhdWx0LUNlbnRyYWxVUy9wcm92aWRlcnMvTWljcm9zb2Z0LkFwaU1hbmFnZW1lbnQvc2VydmljZS9zZGt0ZXN0c2VydmljZS9ncm91cHMvZ3JvdXBJZDEzNDU/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dabfa798-d263-4fe9-8d55-6a6c43cf4a8b"
+ "a5ecc060-dd51-4735-8819-1aad8a19b086"
],
"If-Match": [
"*"
@@ -707,7 +740,7 @@
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "",
@@ -722,7 +755,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:26:20 GMT"
+ "Fri, 09 Mar 2018 19:52:44 GMT"
],
"Pragma": [
"no-cache"
@@ -734,16 +767,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3da12775-4a41-40c9-802e-c9a1f1eac5b9"
+ "0c676b56-0dc3-4138-b42c-60e9c57706f5"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1193"
],
"x-ms-correlation-request-id": [
- "f1db79c7-d90f-446f-875e-12687c22ddc6"
+ "101bdda4-114f-4ee4-92ff-0681206b237a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002620Z:f1db79c7-d90f-446f-875e-12687c22ddc6"
+ "WESTUS2:20180309T195245Z:101bdda4-114f-4ee4-92ff-0681206b237a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -751,14 +787,14 @@
],
"Names": {
"GroupsListAddRemove": [
- "groupId4851",
- "groupName7073",
- "userId8121",
- "Ivan6413",
- "Ivanov786",
- "ivan.ivanov1314",
- "pwd6590",
- "note6684"
+ "groupId1345",
+ "groupName5483",
+ "userId6007",
+ "Ivan4617",
+ "Ivanov6808",
+ "ivan.ivanov5129",
+ "pwd7963",
+ "note2737"
]
},
"Variables": {
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/SubscriptionsList.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/SubscriptionsList.json
index eb8c2d9efa4a9..25800bfbe0d0a 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/SubscriptionsList.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/SubscriptionsList.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "b6990646-d548-4e10-8ae5-698a6205357d"
+ "b7bf8ee3-367a-4dbc-9e1e-c1e9e1e360de"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:10 GMT"
+ "Fri, 09 Mar 2018 19:53:37 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4f76c4bc-953a-4d12-9905-e4757845fccb",
- "7d8b34a7-b89e-4f85-bb9d-5a29bbd0ec5e"
+ "2830e09a-a0a1-44e6-97fd-9fc752c69756",
+ "8f57b4a3-eeca-438e-b3ec-e0ce9e65e814"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
+ "1196"
],
"x-ms-correlation-request-id": [
- "81331277-cb50-43dc-8c2c-41896397e50d"
+ "6bbc6bc8-8bac-4395-af45-e59a77df4655"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002710Z:81331277-cb50-43dc-8c2c-41896397e50d"
+ "WESTUS2:20180309T195338Z:6bbc6bc8-8bac-4395-af45-e59a77df4655"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d7d5d50-136e-4d9c-9ef2-a3d768bb2b42"
+ "5ef4f7d8-c031-4c8e-833b-259964091950"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:10 GMT"
+ "Fri, 09 Mar 2018 19:53:38 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1088cde9-013f-4c32-8fe5-0659102349f8"
+ "8ba95711-24c5-4ba9-9653-dfa33f1ea96d"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14995"
],
"x-ms-correlation-request-id": [
- "b017543f-15dd-4c30-9c47-aa65b882ecc7"
+ "2820b3b8-f557-4b98-a4e9-4c884d8dad2a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002710Z:b017543f-15dd-4c30-9c47-aa65b882ecc7"
+ "WESTUS2:20180309T195338Z:2820b3b8-f557-4b98-a4e9-4c884d8dad2a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b9b8351-348b-46c7-8ef5-309ca1b65403"
+ "dbf2c5a6-ed4e-4ecc-91cf-c636dc6be2ee"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:10 GMT"
+ "Fri, 09 Mar 2018 19:53:38 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c2dd0c6b-9a41-40ee-97d8-d8298af4cb50"
+ "cfb4120d-e434-453b-b2ed-7a3ea784ed25"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14994"
],
"x-ms-correlation-request-id": [
- "6e9a7350-ed92-407e-8cf7-af1aff2c74f9"
+ "0aa73610-f3c8-478e-9bd7-1d05f2492297"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002710Z:6e9a7350-ed92-407e-8cf7-af1aff2c74f9"
+ "WESTUS2:20180309T195339Z:0aa73610-f3c8-478e-9bd7-1d05f2492297"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "09d81d6e-8d72-4261-8b4b-db2e147918fe"
+ "0397b8b6-7283-4a26-9953-91a4b2e5b099"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070002\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"secondaryKey\": \"088c12c96e8e4d5198a09c426f134bd0\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:10 GMT"
+ "Fri, 09 Mar 2018 19:53:39 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4b489c78-68c8-47df-a855-596c320826dd"
+ "e5a98808-a846-4a77-b957-5c8b1d2e7351"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14993"
],
"x-ms-correlation-request-id": [
- "f096f1b1-c362-4471-843e-e2aa66e95f60"
+ "4144bd57-ec16-4618-94b2-d95236d4c685"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002711Z:f096f1b1-c362-4471-843e-e2aa66e95f60"
+ "WESTUS2:20180309T195339Z:4144bd57-ec16-4618-94b2-d95236d4c685"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -264,14 +276,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a9eac00-5f76-432f-8280-48a39d80c220"
+ "f9a03de3-b0f5-4238-93fb-b974be9b9ad7"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070001\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070001\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/starter\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"b39b8620186c45399dcc542df1b18652\",\r\n \"secondaryKey\": \"5f1d2ea1f546452f88c46d492033b0b7\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions?%24top=1&api-version=2018-01-01&%24skip=1\"\r\n}",
@@ -286,7 +298,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:10 GMT"
+ "Fri, 09 Mar 2018 19:53:39 GMT"
],
"Pragma": [
"no-cache"
@@ -304,16 +316,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "19ade4a4-4c51-4818-924d-0c416bd3992f"
+ "bf9c36c4-1fe9-4387-9552-c6a981571f33"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14992"
],
"x-ms-correlation-request-id": [
- "41587c48-7af4-4588-a95b-2b320794023c"
+ "e5fa50ab-9d42-494d-b028-3124c1371a51"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002711Z:41587c48-7af4-4588-a95b-2b320794023c"
+ "WESTUS2:20180309T195340Z:e5fa50ab-9d42-494d-b028-3124c1371a51"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -325,14 +340,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25455e97-0345-44bc-9bc5-e3681684dcf8"
+ "6b30090f-e17a-4f55-b1f7-c6480597cc86"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1/subscriptions/59442dab78b6e60085070002\",\r\n \"type\": \"Microsoft.ApiManagement/service/users/subscriptions\",\r\n \"name\": \"59442dab78b6e60085070002\",\r\n \"properties\": {\r\n \"userId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"productId\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/products/unlimited\",\r\n \"displayName\": null,\r\n \"state\": \"active\",\r\n \"createdDate\": \"2017-06-16T19:12:43.717Z\",\r\n \"startDate\": null,\r\n \"expirationDate\": null,\r\n \"endDate\": null,\r\n \"notificationDate\": null,\r\n \"primaryKey\": \"5d7dc5e4a9f24d47956d0cea1205dcba\",\r\n \"secondaryKey\": \"088c12c96e8e4d5198a09c426f134bd0\",\r\n \"stateComment\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -347,7 +362,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:11 GMT"
+ "Fri, 09 Mar 2018 19:53:39 GMT"
],
"Pragma": [
"no-cache"
@@ -365,16 +380,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c4ec7f1f-771c-4483-9498-660103ac861f"
+ "7943be77-069a-48bc-b1fe-0f18f0cd5502"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14991"
],
"x-ms-correlation-request-id": [
- "082e53a0-b80c-4838-b0ba-07364e6ce467"
+ "55a16e41-a53c-4635-99d7-574eaced040b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002711Z:082e53a0-b80c-4838-b0ba-07364e6ce467"
+ "WESTUS2:20180309T195340Z:55a16e41-a53c-4635-99d7-574eaced040b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/UserIdentities.json b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/UserIdentities.json
index 1156d9d7d44bc..36260e6af5a28 100644
--- a/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/UserIdentities.json
+++ b/src/SDKs/ApiManagement/ApiManagement.Tests/SessionRecords/ApiManagement.Tests.ManagementApiTests.UserTests/UserIdentities.json
@@ -13,17 +13,17 @@
"289"
],
"x-ms-client-request-id": [
- "38edf0cc-be5e-439d-9921-0139fa5fad50"
+ "c6334f60-5cc1-43fd-9d62-5e2611e87d0c"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -35,7 +35,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:34 GMT"
+ "Fri, 09 Mar 2018 19:54:09 GMT"
],
"Pragma": [
"no-cache"
@@ -44,7 +44,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -56,17 +56,20 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "40f56573-436c-443e-b081-3cd2020a5bdc",
- "09881bc4-7ad0-41d8-8acf-5841faa0168c"
+ "05243ba0-05fa-4bbd-ad14-9193e878114f",
+ "d1ada1ec-26ab-4dbd-a825-8dae545ec2fb"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "dd91827f-84ef-4183-84ef-99320469077e"
+ "b98955e8-f85c-4855-bd62-f7c537e40061"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002735Z:dd91827f-84ef-4183-84ef-99320469077e"
+ "WESTUS2:20180309T195410Z:b98955e8-f85c-4855-bd62-f7c537e40061"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -78,17 +81,17 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0733732e-87d6-44fd-b2cc-2e421296967e"
+ "824f6aaa-015a-402e-98e3-0279ed5d85ff"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADaNQw=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice\",\r\n \"name\": \"sdktestservice\",\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\": \"Central US\",\r\n \"etag\": \"AAAAAADe5eo=\",\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\": \"2017-06-16T19:08:53.4371217Z\",\r\n \"gatewayUrl\": \"https://sdktestservice.azure-api.net\",\r\n \"gatewayRegionalUrl\": \"https://sdktestservice-centralus-01.regional.azure-api.net\",\r\n \"portalUrl\": \"https://sdktestservice.portal.azure-api.net\",\r\n \"managementApiUrl\": \"https://sdktestservice.management.azure-api.net\",\r\n \"scmUrl\": \"https://sdktestservice.scm.azure-api.net\",\r\n \"hostnameConfigurations\": [],\r\n \"publicIPAddresses\": [\r\n \"52.173.77.113\"\r\n ],\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 },\r\n \"sku\": {\r\n \"name\": \"Developer\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -100,7 +103,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:34 GMT"
+ "Fri, 09 Mar 2018 19:54:09 GMT"
],
"Pragma": [
"no-cache"
@@ -109,7 +112,7 @@
"chunked"
],
"ETag": [
- "\"AAAAAADaNQw=\""
+ "\"AAAAAADe5eo=\""
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -121,16 +124,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5f96104f-7d76-430d-9d81-797d8b039fd8"
+ "4137f1e3-ef32-4b57-a36e-42f14814ec3e"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14999"
],
"x-ms-correlation-request-id": [
- "7bfa25a3-9f61-4323-a8ad-b52af23d4722"
+ "c5691c63-f858-4da4-854a-100b53c068c5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002735Z:7bfa25a3-9f61-4323-a8ad-b52af23d4722"
+ "WESTUS2:20180309T195410Z:c5691c63-f858-4da4-854a-100b53c068c5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -142,14 +148,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f451bc4-c22c-475d-b7f9-12f49843a121"
+ "4026cdaf-67f4-4efe-a81f-ecb3f1dc1c51"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/bab08e11-7b12-4354-9fd1-4b5d64d40b68/resourceGroups/Api-Default-CentralUS/providers/Microsoft.ApiManagement/service/sdktestservice/users/1\",\r\n \"type\": \"Microsoft.ApiManagement/service/users\",\r\n \"name\": \"1\",\r\n \"properties\": {\r\n \"firstName\": \"Administrator\",\r\n \"lastName\": \"\",\r\n \"email\": \"apim@autorestsdk.com\",\r\n \"state\": \"active\",\r\n \"registrationDate\": \"2017-06-16T19:12:43.183Z\",\r\n \"note\": null,\r\n \"identities\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}",
@@ -164,7 +170,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:34 GMT"
+ "Fri, 09 Mar 2018 19:54:09 GMT"
],
"Pragma": [
"no-cache"
@@ -182,16 +188,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "91c24166-ecd2-40f1-a0a8-ea288fb76f4b"
+ "365ae63d-7d4a-4a76-a5db-548964c4f098"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14998"
],
"x-ms-correlation-request-id": [
- "bb0577ee-cb62-472d-adb2-e0d692524904"
+ "ed3d1247-2413-406d-9e4b-1f930908ad30"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002735Z:bb0577ee-cb62-472d-adb2-e0d692524904"
+ "WESTUS2:20180309T195410Z:ed3d1247-2413-406d-9e4b-1f930908ad30"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
@@ -203,14 +212,14 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7df1ffef-399e-4bf1-b3fe-4cf503e80c82"
+ "e4edc0e9-5877-4c5d-846c-5d3e0f29f3d6"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/1.0.0.0"
+ "Microsoft.Azure.Management.ApiManagement.ApiManagementClient/4.0.0.0"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"provider\": \"Azure\",\r\n \"id\": \"apim@autorestsdk.com\"\r\n }\r\n ],\r\n \"count\": 1,\r\n \"nextLink\": null\r\n}",
@@ -225,7 +234,7 @@
"no-cache"
],
"Date": [
- "Wed, 21 Feb 2018 00:27:34 GMT"
+ "Fri, 09 Mar 2018 19:54:10 GMT"
],
"Pragma": [
"no-cache"
@@ -243,16 +252,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b624e869-62f0-47a3-8783-0801b6a2441d"
+ "a803a8ba-bdbd-47e5-8825-3b954325ebee"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"14997"
],
"x-ms-correlation-request-id": [
- "a24455a2-ea99-4ad3-97e9-01b429ec6eb0"
+ "669385fa-3db3-4ee3-80ac-f77b9c5ffb3f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20180221T002735Z:a24455a2-ea99-4ad3-97e9-01b429ec6eb0"
+ "WESTUS2:20180309T195410Z:669385fa-3db3-4ee3-80ac-f77b9c5ffb3f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
]
},
"StatusCode": 200
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs
new file mode 100644
index 0000000000000..06115d66c49a3
--- /dev/null
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs
@@ -0,0 +1,51 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+
+namespace Microsoft.Azure.Management.ApiManagement.Models
+{
+ ///
+ /// Subscription details.
+ ///
+ public partial class LoggerContract
+ {
+ public string CredentialsPropertyName
+ {
+ get
+ {
+ if (this.Credentials != null)
+ {
+ if (this.LoggerType.Equals(Models.LoggerType.AzureEventHub))
+ {
+ if (this.Credentials.TryGetValue(LoggerConstants.EventHubPropertyName, out string propertyName))
+ {
+ return propertyName.Replace("{", "").Replace("}", "");
+ }
+ }
+ else if (this.LoggerType.Equals(Models.LoggerType.ApplicationInsights))
+ {
+ if (this.Credentials.TryGetValue(LoggerConstants.ApplicationInsightsPropertyName, out string propertyName))
+ {
+ return propertyName.Replace("{", "").Replace("}", "");
+ }
+ }
+ }
+
+ return string.Empty;
+ }
+ }
+ }
+
+ public class LoggerConstants
+ {
+ ///
+ /// Property required for EventHub Logger Create Contract
+ ///
+ public const string EventHubPropertyName = "connectionString";
+
+ ///
+ /// Property required for ApplicationInsights Logger Create Contract
+ ///
+ public const string ApplicationInsightsPropertyName = "instrumentationKey";
+ }
+}
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs
index 200a95f5d71ab..98ef030f2eb4e 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperations.cs
@@ -61,8 +61,9 @@ internal ApiExportOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Format in which to export the Api Details to the Storage Blob with Sas Key
@@ -120,17 +121,17 @@ internal ApiExportOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (format == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs
index 5dba86dfb7132..da753734c3dc3 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiExportOperationsExtensions.cs
@@ -35,8 +35,9 @@ public static partial class ApiExportOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Format in which to export the Api Details to the Storage Blob with Sas Key
@@ -61,8 +62,9 @@ public static ApiExportResult Get(this IApiExportOperations operations, string r
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Format in which to export the Api Details to the Storage Blob with Sas Key
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs
index 87bd942d75386..eba4685b4bf73 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperations.cs
@@ -306,8 +306,9 @@ internal ApiOperationOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -362,17 +363,17 @@ internal ApiOperationOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs
index 7922772c50f51..fd8373bcb6aac 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationOperationsExtensions.cs
@@ -92,8 +92,9 @@ public static partial class ApiOperationOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -118,8 +119,9 @@ public static ApiOperationGetEntityTagHeaders GetEntityTag(this IApiOperationOpe
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs
index 5744a3ee1cc3f..0b14538b6b2d0 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperations.cs
@@ -318,8 +318,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -374,17 +375,17 @@ internal ApiOperationPolicyOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
@@ -1151,8 +1152,9 @@ internal ApiOperationPolicyOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -1212,17 +1214,17 @@ internal ApiOperationPolicyOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperationsExtensions.cs
index b9e3efa5a6d15..b5e6c5f82953c 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiOperationPolicyOperationsExtensions.cs
@@ -93,8 +93,9 @@ public static PolicyCollection ListByOperation(this IApiOperationPolicyOperation
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -119,8 +120,9 @@ public static ApiOperationPolicyGetEntityTagHeaders GetEntityTag(this IApiOperat
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -280,8 +282,9 @@ public static PolicyContract Get(this IApiOperationPolicyOperations operations,
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -310,8 +313,9 @@ public static void Delete(this IApiOperationPolicyOperations operations, string
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs
index 3675226006f61..d9c6f4fd956cf 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperations.cs
@@ -60,8 +60,9 @@ internal ApiPolicyOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Headers that will be added to request.
@@ -115,17 +116,17 @@ internal ApiPolicyOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (Client.ApiVersion == null)
@@ -305,8 +306,9 @@ internal ApiPolicyOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Headers that will be added to request.
@@ -357,17 +359,17 @@ internal ApiPolicyOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (Client.ApiVersion == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperationsExtensions.cs
index f685f7545664d..dedd31a0336aa 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiPolicyOperationsExtensions.cs
@@ -34,8 +34,9 @@ public static partial class ApiPolicyOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
public static PolicyCollection ListByApi(this IApiPolicyOperations operations, string resourceGroupName, string serviceName, string apiId)
{
@@ -55,8 +56,9 @@ public static PolicyCollection ListByApi(this IApiPolicyOperations operations, s
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// The cancellation token.
@@ -83,8 +85,9 @@ public static PolicyCollection ListByApi(this IApiPolicyOperations operations, s
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
public static ApiPolicyGetEntityTagHeaders GetEntityTag(this IApiPolicyOperations operations, string resourceGroupName, string serviceName, string apiId)
{
@@ -105,8 +108,9 @@ public static ApiPolicyGetEntityTagHeaders GetEntityTag(this IApiPolicyOperation
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// The cancellation token.
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs
index 4d117cba26840..d954bc3bbe1fa 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperations.cs
@@ -60,8 +60,9 @@ internal ApiSchemaOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Headers that will be added to request.
@@ -115,17 +116,17 @@ internal ApiSchemaOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (Client.ApiVersion == null)
@@ -305,8 +306,9 @@ internal ApiSchemaOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -361,17 +363,17 @@ internal ApiSchemaOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (schemaId == null)
@@ -553,8 +555,9 @@ internal ApiSchemaOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -612,17 +615,17 @@ internal ApiSchemaOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (schemaId == null)
@@ -822,8 +825,9 @@ internal ApiSchemaOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -888,17 +892,17 @@ internal ApiSchemaOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (schemaId == null)
@@ -1127,8 +1131,9 @@ internal ApiSchemaOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -1188,17 +1193,17 @@ internal ApiSchemaOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (schemaId == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs
index d34d20ffbbd0f..42f50692b2443 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ApiSchemaOperationsExtensions.cs
@@ -34,8 +34,9 @@ public static partial class ApiSchemaOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
public static IPage ListByApi(this IApiSchemaOperations operations, string resourceGroupName, string serviceName, string apiId)
{
@@ -55,8 +56,9 @@ public static IPage ListByApi(this IApiSchemaOperations operatio
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// The cancellation token.
@@ -83,8 +85,9 @@ public static IPage ListByApi(this IApiSchemaOperations operatio
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -109,8 +112,9 @@ public static ApiSchemaGetEntityTagHeaders GetEntityTag(this IApiSchemaOperation
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -140,8 +144,9 @@ public static ApiSchemaGetEntityTagHeaders GetEntityTag(this IApiSchemaOperation
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -165,8 +170,9 @@ public static SchemaContract Get(this IApiSchemaOperations operations, string re
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -196,8 +202,9 @@ public static SchemaContract Get(this IApiSchemaOperations operations, string re
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -228,8 +235,9 @@ public static SchemaContract Get(this IApiSchemaOperations operations, string re
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -266,8 +274,9 @@ public static SchemaContract Get(this IApiSchemaOperations operations, string re
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -296,8 +305,9 @@ public static void Delete(this IApiSchemaOperations operations, string resourceG
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs
index c566c796ef019..fe19cf79c0bb5 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiExportOperations.cs
@@ -35,8 +35,9 @@ public partial interface IApiExportOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Format in which to export the Api Details to the Storage Blob with
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs
index 197abfdbd1e83..fa1038a006067 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationOperations.cs
@@ -68,8 +68,9 @@ public partial interface IApiOperationOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs
index 84d1a071159be..d938f258b4a96 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiOperationPolicyOperations.cs
@@ -68,8 +68,9 @@ public partial interface IApiOperationPolicyOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
@@ -174,8 +175,9 @@ public partial interface IApiOperationPolicyOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs
index 7c437e3a19301..c9922fe8c88a1 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiPolicyOperations.cs
@@ -33,8 +33,9 @@ public partial interface IApiPolicyOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// The headers that will be added to request.
@@ -63,8 +64,9 @@ public partial interface IApiPolicyOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// The headers that will be added to request.
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs
index 0a7da4b4caebc..cea7865bfec87 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IApiSchemaOperations.cs
@@ -33,8 +33,9 @@ public partial interface IApiSchemaOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// The headers that will be added to request.
@@ -63,8 +64,9 @@ public partial interface IApiSchemaOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -93,8 +95,9 @@ public partial interface IApiSchemaOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -126,8 +129,9 @@ public partial interface IApiSchemaOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
@@ -166,8 +170,9 @@ public partial interface IApiSchemaOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Schema identifier within an API. Must be unique in the current API
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs
index bcc20ba56a102..a386b4383b4f1 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/IOperationOperations.cs
@@ -34,8 +34,9 @@ public partial interface IOperationOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// OData parameters to apply to the operation.
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs
index 7a8a1c1e2f847..0262296a3ed6d 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagDescriptionOperations.cs
@@ -36,8 +36,9 @@ public partial interface ITagDescriptionOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -69,8 +70,9 @@ public partial interface ITagDescriptionOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -99,8 +101,9 @@ public partial interface ITagDescriptionOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -132,8 +135,9 @@ public partial interface ITagDescriptionOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -172,8 +176,9 @@ public partial interface ITagDescriptionOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs
index 9fcb0fa9d81ba..e3179ce4abbc5 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/ITagOperations.cs
@@ -215,8 +215,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -248,8 +249,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -278,8 +280,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -311,8 +314,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -348,8 +352,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management
@@ -383,8 +388,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
@@ -420,8 +426,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
@@ -454,8 +461,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
@@ -491,8 +499,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
@@ -532,8 +541,9 @@ public partial interface ITagOperations
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management
- /// service instance.
+ /// API revision identifier. Must be unique in the current API
+ /// Management service instance. Non-current revision has ;rev=n as a
+ /// suffix where n is the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs
index 11ea528867471..03856649e8775 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/ApiCreateOrUpdateParameter.cs
@@ -73,7 +73,7 @@ public ApiCreateOrUpdateParameter()
/// Type of Api to create.
/// * `http` creates a SOAP to REST API
/// * `soap` creates a SOAP pass-through API. Possible values include:
- /// 'http', 'soap'
+ /// 'SoapToRest', 'SoapPassThrough'
public ApiCreateOrUpdateParameter(string path, string description = default(string), AuthenticationSettingsContract authenticationSettings = default(AuthenticationSettingsContract), SubscriptionKeyParameterNamesContract subscriptionKeyParameterNames = default(SubscriptionKeyParameterNamesContract), string apiType = default(string), string apiRevision = default(string), string apiVersion = default(string), bool? isCurrent = default(bool?), bool? isOnline = default(bool?), string apiVersionSetId = default(string), string displayName = default(string), string serviceUrl = default(string), IList protocols = default(IList), ApiVersionSetContractDetails apiVersionSet = default(ApiVersionSetContractDetails), string contentValue = default(string), string contentFormat = default(string), ApiCreateOrUpdatePropertiesWsdlSelector wsdlSelector = default(ApiCreateOrUpdatePropertiesWsdlSelector), string soapApiType = default(string))
{
Description = description;
@@ -219,7 +219,7 @@ public ApiCreateOrUpdateParameter()
/// Gets or sets type of Api to create.
/// * `http` creates a SOAP to REST API
/// * `soap` creates a SOAP pass-through API. Possible values include:
- /// 'http', 'soap'
+ /// 'SoapToRest', 'SoapPassThrough'
///
[JsonProperty(PropertyName = "properties.apiType")]
public string SoapApiType { get; set; }
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SoapApiType.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SoapApiType.cs
index 0ec20d0ce901f..4b1af292544f1 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SoapApiType.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/Models/SoapApiType.cs
@@ -16,7 +16,13 @@ namespace Microsoft.Azure.Management.ApiManagement.Models
///
public static class SoapApiType
{
- public const string Http = "http";
- public const string Soap = "soap";
+ ///
+ /// Imports a SOAP API having a RESTful front end.
+ ///
+ public const string SoapToRest = "http";
+ ///
+ /// Imports the Soap API having a SOAP front end.
+ ///
+ public const string SoapPassThrough = "soap";
}
}
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs
index 5ce7fbd17c303..d9d832973030e 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperations.cs
@@ -61,8 +61,9 @@ internal OperationOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -119,17 +120,17 @@ internal OperationOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (Client.ApiVersion == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs
index a39aff416519c..804cbb7a26e78 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/OperationOperationsExtensions.cs
@@ -35,8 +35,9 @@ public static partial class OperationOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -59,8 +60,9 @@ public static partial class OperationOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs
index 1482e059a90d9..510c53254fb06 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperations.cs
@@ -63,8 +63,9 @@ internal TagDescriptionOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -121,17 +122,17 @@ internal TagDescriptionOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (Client.ApiVersion == null)
@@ -306,8 +307,9 @@ internal TagDescriptionOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -362,17 +364,17 @@ internal TagDescriptionOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -554,8 +556,9 @@ internal TagDescriptionOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -613,17 +616,17 @@ internal TagDescriptionOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -823,8 +826,9 @@ internal TagDescriptionOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -889,17 +893,17 @@ internal TagDescriptionOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -1128,8 +1132,9 @@ internal TagDescriptionOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -1189,17 +1194,17 @@ internal TagDescriptionOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs
index 8addac4324afb..e6ca925539a5d 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagDescriptionOperationsExtensions.cs
@@ -37,8 +37,9 @@ public static partial class TagDescriptionOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -63,8 +64,9 @@ public static partial class TagDescriptionOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -93,8 +95,9 @@ public static partial class TagDescriptionOperationsExtensions
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -118,8 +121,9 @@ public static TagDescriptionGetEntityStateHeaders GetEntityState(this ITagDescri
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -149,8 +153,9 @@ public static TagDescriptionGetEntityStateHeaders GetEntityState(this ITagDescri
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -174,8 +179,9 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -205,8 +211,9 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -237,8 +244,9 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -275,8 +283,9 @@ public static TagDescriptionContract Get(this ITagDescriptionOperations operatio
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -305,8 +314,9 @@ public static void Delete(this ITagDescriptionOperations operations, string reso
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs
index 7ab1e82f1744b..4ec97ebc45e62 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperations.cs
@@ -1488,8 +1488,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -1546,17 +1547,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (Client.ApiVersion == null)
@@ -1731,8 +1732,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -1787,17 +1789,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -1979,8 +1981,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -2038,17 +2041,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -2248,8 +2251,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -2311,17 +2315,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -2535,8 +2539,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -2596,17 +2601,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (tagId == null)
@@ -2788,8 +2793,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -2850,17 +2856,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
@@ -3056,8 +3062,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -3116,17 +3123,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
@@ -3329,8 +3336,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -3392,17 +3400,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
@@ -3623,8 +3631,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -3690,17 +3699,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
@@ -3935,8 +3944,9 @@ internal TagOperations(ApiManagementClient client)
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -4000,17 +4010,17 @@ internal TagOperations(ApiManagementClient client)
}
if (apiId != null)
{
- if (apiId.Length > 80)
+ if (apiId.Length > 256)
{
- throw new ValidationException(ValidationRules.MaxLength, "apiId", 80);
+ throw new ValidationException(ValidationRules.MaxLength, "apiId", 256);
}
if (apiId.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "apiId", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(apiId, "^[^*#&+:<>?]+$"))
{
- throw new ValidationException(ValidationRules.Pattern, "apiId", "(^[\\w]+$)|(^[\\w][\\w\\-]+[\\w]$)");
+ throw new ValidationException(ValidationRules.Pattern, "apiId", "^[^*#&+:<>?]+$");
}
}
if (operationId == null)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs
index 329ac5993e49a..012773dbcabd7 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Generated/TagOperationsExtensions.cs
@@ -347,8 +347,9 @@ public static void Delete(this ITagOperations operations, string resourceGroupNa
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -371,8 +372,9 @@ public static void Delete(this ITagOperations operations, string resourceGroupNa
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// OData parameters to apply to the operation.
@@ -401,8 +403,9 @@ public static void Delete(this ITagOperations operations, string resourceGroupNa
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -426,8 +429,9 @@ public static TagGetEntityStateByApiHeaders GetEntityStateByApi(this ITagOperati
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -457,8 +461,9 @@ public static TagGetEntityStateByApiHeaders GetEntityStateByApi(this ITagOperati
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -482,8 +487,9 @@ public static TagContract GetByApi(this ITagOperations operations, string resour
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -513,8 +519,9 @@ public static TagContract GetByApi(this ITagOperations operations, string resour
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -542,8 +549,9 @@ public static TagContract GetByApi(this ITagOperations operations, string resour
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -577,8 +585,9 @@ public static TagContract GetByApi(this ITagOperations operations, string resour
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -607,8 +616,9 @@ public static void DetachFromApi(this ITagOperations operations, string resource
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Tag identifier. Must be unique in the current API Management service
@@ -640,8 +650,9 @@ public static void DetachFromApi(this ITagOperations operations, string resource
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -668,8 +679,9 @@ public static void DetachFromApi(this ITagOperations operations, string resource
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -702,8 +714,9 @@ public static void DetachFromApi(this ITagOperations operations, string resource
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -731,8 +744,9 @@ public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -766,8 +780,9 @@ public static TagGetEntityStateByOperationHeaders GetEntityStateByOperation(this
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -795,8 +810,9 @@ public static TagContract GetByOperation(this ITagOperations operations, string
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -830,8 +846,9 @@ public static TagContract GetByOperation(this ITagOperations operations, string
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -863,8 +880,9 @@ public static TagContract GetByOperation(this ITagOperations operations, string
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -902,8 +920,9 @@ public static TagContract GetByOperation(this ITagOperations operations, string
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
@@ -936,8 +955,9 @@ public static void DetachFromOperation(this ITagOperations operations, string re
/// The name of the API Management service.
///
///
- /// API identifier. Must be unique in the current API Management service
- /// instance.
+ /// API revision identifier. Must be unique in the current API Management
+ /// service instance. Non-current revision has ;rev=n as a suffix where n is
+ /// the revision number.
///
///
/// Operation identifier within an API. Must be unique in the current API
diff --git a/src/SDKs/_metadata/apimanagement_resource-manager.txt b/src/SDKs/_metadata/apimanagement_resource-manager.txt
index 902c0e5066231..72f9171c1e491 100644
--- a/src/SDKs/_metadata/apimanagement_resource-manager.txt
+++ b/src/SDKs/_metadata/apimanagement_resource-manager.txt
@@ -1,9 +1,9 @@
-2018-03-09 00:36:09 UTC
+2018-03-09 19:23:44 UTC
1) azure-rest-api-specs repository information
GitHub user: Azure
Branch: master
-Commit: 6a0907fc622a45e7cb92a9441d379ca870e5ca05
+Commit: 28a310778e29ef2ef00106ed2536925cb11378a0
2) AutoRest information
Requested version: latest
From ed1fc40f7dc6ec2298d97b2c5df186384fb7576b Mon Sep 17 00:00:00 2001
From: Samir Solanki
Date: Fri, 9 Mar 2018 14:29:22 -0800
Subject: [PATCH 2/2] Extension fixes
---
.../Customization/Models/LoggerContractExtension.cs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs
index 06115d66c49a3..ab9284153f898 100644
--- a/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs
+++ b/src/SDKs/ApiManagement/Management.ApiManagement/Customization/Models/LoggerContractExtension.cs
@@ -5,7 +5,7 @@
namespace Microsoft.Azure.Management.ApiManagement.Models
{
///
- /// Subscription details.
+ /// Logger Contract extension.
///
public partial class LoggerContract
{
@@ -19,19 +19,19 @@ public string CredentialsPropertyName
{
if (this.Credentials.TryGetValue(LoggerConstants.EventHubPropertyName, out string propertyName))
{
- return propertyName.Replace("{", "").Replace("}", "");
+ return propertyName?.Replace("{", "").Replace("}", "");
}
}
else if (this.LoggerType.Equals(Models.LoggerType.ApplicationInsights))
{
if (this.Credentials.TryGetValue(LoggerConstants.ApplicationInsightsPropertyName, out string propertyName))
{
- return propertyName.Replace("{", "").Replace("}", "");
+ return propertyName?.Replace("{", "").Replace("}", "");
}
}
}
- return string.Empty;
+ return null;
}
}
}